24 lines
501 B
C#
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();
|
|
}
|
|
}
|
|
}
|
|
}
|