Initial commit

This commit is contained in:
2026-03-03 00:39:30 +05:00
commit fc01f07d9b
29933 changed files with 5353098 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
using System.Collections;
using System.Collections.Generic;
using UnityEditor;
using UnityEngine;
[ExecuteInEditMode]
public class DisableGizmos : MonoBehaviour
{
// Start is called before the first frame update
void Awake()
{
#if UNITY_EDITOR
SceneView view = SceneView.lastActiveSceneView;
if (view != null)
{
view.drawGizmos = false;
}
#endif
}
}

View File

@@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: e9289697a3b38b5499e887ef5d6e0d9a

View File

@@ -0,0 +1,11 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Rotate : MonoBehaviour
{
void Update()
{
transform.Rotate(new Vector3(0f, 10f, 0f) * Time.deltaTime);
}
}

View File

@@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: 6f6bad4089e6d904aae8e837415fb559