This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
[data-custom-class='body'], [data-custom-class='body'] * { | |
background: transparent !important; | |
} | |
[data-custom-class='title'], [data-custom-class='title'] * { | |
font-family: Arial !important; | |
font-size: 26px !important; | |
color: #000000 !important; | |
} | |
[data-custom-class='subtitle'], [data-custom-class='subtitle'] * { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let map; | |
const silverStyle = [ | |
{ | |
elementType: "geometry", | |
stylers: [{ color: "#f5f5f5" }], | |
}, | |
{ | |
elementType: "labels.icon", | |
stylers: [{ visibility: "off" }], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#target photoshop | |
try | |
{ | |
var doc = app.activeDocument; | |
var docName = doc.name.split('.')[0]; | |
} | |
catch (e) | |
{ | |
alert('Error'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Extras.Extensions; | |
using System.IO; | |
using System.Text; | |
using UnityEditor; | |
using UnityEditor.SceneManagement; | |
using UnityEngine; | |
public static class CalculateSizeOfAllSprites | |
{ | |
[MenuItem("Tools/Calculate size of all sprites")] |