Files
Studio/Assets/Test.cs
2025-05-29 01:51:13 +09:00

24 lines
501 B
C#

using Studio.Manage;
using UnityEngine;
namespace Studio
{
public class Test : MonoBehaviour
{
// Start is called once before the first execution of Update after the MonoBehaviour is created
void Start()
{
}
// Update is called once per frame
void Update()
{
if(Input.GetKeyDown(KeyCode.K))
{
ManagerHub.instance.Get<AssetManager>().LoadResourcesAsset();
}
}
}
}