This file contains 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
Shader "Name" { | |
Properties { | |
_Name ("display name", Range (min, max)) = number | |
_Name ("display name", Float) = number | |
_Name ("display name", Int) = number | |
_Name ("display name", Color) = (number,number,number,number) | |
_Name ("display name", Vector) = (number,number,number,number) |
This file contains 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
# remove-missing-script.py | |
# A Python script that removes the disconnected script file "Missing Script" in Unity Prefab files | |
# - Author: github.com/sokcuri | |
# | |
# usage: | |
# > python Tools/remove-missing-script.py [Target Folder] | |
# | |
import re, sys | |
from pathlib import Path |