diff --git a/Assets/VRMShaders/GLTF/IO/Runtime/Util/Symbols.cs b/Assets/VRMShaders/GLTF/IO/Runtime/Util/Symbols.cs index 7035e055e..3766e019c 100644 --- a/Assets/VRMShaders/GLTF/IO/Runtime/Util/Symbols.cs +++ b/Assets/VRMShaders/GLTF/IO/Runtime/Util/Symbols.cs @@ -7,12 +7,16 @@ namespace VRMShaders /// VRMShaders が最下層になるため、ここに配置している /// /// - public const bool VRM_DEVELOP = + public static bool VRM_DEVELOP + { + get + { #if VRM_DEVELOP -true + return true; #else -false + return false; #endif - ; + } + } } }