Import Test files

This commit is contained in:
2025-12-13 19:57:35 +08:00
parent 227be5bbd9
commit 8915a26407
234 changed files with 27436 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class GO_Gem : MonoBehaviour {
private Rigidbody rigidBody;
private void Awake()
{
this.rigidBody = GetComponent<Rigidbody>();
}
public void Spawn() {
this.gameObject.SetActive(true);
}
public void Return() {
this.gameObject.SetActive(false);
}
}