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
| import os | |
| import re | |
| FILE_LOCATION = input("File Location to Search: ") | |
| print('Searching... ' + FILE_LOCATION) | |
| IMAGE_FILES = os.listdir(FILE_LOCATION) | |
| FILE_NUMBERING = [] | |
| for FOUND_FILE in IMAGE_FILES: |
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
| Shader "Custom/URP/SH_BaseLit" | |
| { | |
| Properties | |
| { | |
| _BaseColor("Base Color", color) = (1,1,1,1) | |
| [Space] | |
| _MainTex ("Texture", 2D) = "white" {} | |
| [Space] | |
| _Smoothness("Smoothness", Range(0,1)) = 0 | |
| [Space] |
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
| # Maya Window GUI Template : Base Maya Commands | |
| # | |
| # -------------------------- IMPORTS | |
| from maya import cmds | |
| # -------------------------- CLASS | |
| class WindowTemplate: | |
| # -------------------------- VARIABLES | |
| WINDOW_HEIGHT = 500 |