diff options
| author | yum <yum.food.vr@gmail.com> | 2025-02-19 15:01:32 -0800 |
|---|---|---|
| committer | yum <yum.food.vr@gmail.com> | 2025-02-19 15:01:32 -0800 |
| commit | 076e5c0c398394a438354a7f48c6ae9557b96fc5 (patch) | |
| tree | 28691181afade61bda4458292dbeec7d94b69492 /Scripts/YOTSNDMFConfig.cs | |
| parent | 6574901e8104dfeff212098b6e583a2a2ff99c23 (diff) | |
More formatting
Also slightly simplify the topological sort implementation
Diffstat (limited to 'Scripts/YOTSNDMFConfig.cs')
| -rw-r--r-- | Scripts/YOTSNDMFConfig.cs | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Scripts/YOTSNDMFConfig.cs b/Scripts/YOTSNDMFConfig.cs index 9b2e71e..6e511cb 100644 --- a/Scripts/YOTSNDMFConfig.cs +++ b/Scripts/YOTSNDMFConfig.cs @@ -6,15 +6,15 @@ using VRC.SDK3.Avatars.ScriptableObjects; namespace YOTS
{
- [DisallowMultipleComponent]
- public class YOTSNDMFConfig : MonoBehaviour {
- [Tooltip("The JSON configuration file.")]
- public TextAsset jsonConfig;
+ [DisallowMultipleComponent]
+ public class YOTSNDMFConfig : MonoBehaviour {
+ [Tooltip("The JSON configuration file.")]
+ public TextAsset jsonConfig;
- void OnValidate() {
- gameObject.tag = "EditorOnly";
- }
+ void OnValidate() {
+ gameObject.tag = "EditorOnly";
}
+ }
}
#endif // UNITY_EDITOR
|
