mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-10 03:35:10 +00:00
21 lines
No EOL
456 B
C#
21 lines
No EOL
456 B
C#
using UnityEngine;
|
|
|
|
// this is a script for testing
|
|
|
|
using HeavenStudio.Editor;
|
|
|
|
namespace HeavenStudio.Tests
|
|
{
|
|
public class WTF : MonoBehaviour
|
|
{
|
|
public GameObject test;
|
|
|
|
private void Update()
|
|
{
|
|
if (Input.GetKeyDown(KeyCode.Z))
|
|
{
|
|
GetComponent<CommandManager>().Execute(new TestCommand(test, new Vector3(Random.Range(-8f, 8f), Random.Range(-6f, 6f))));
|
|
}
|
|
}
|
|
}
|
|
} |