NLDClient-yudde/ProjectNLD/Assets/Code/Scripts/GameWrapper/CmpScriptRender.cs

26 lines
375 B
C#
Raw Normal View History

2023-12-28 12:30:37 +08:00
using System;
using UnityEngine;
namespace Gameplay.Performance.Cmp
{
public class CmpScriptRender : MonoBehaviour
{
private void OnEnable()
{
}
private void OnDisable()
{
}
private void Update()
{
// Graphics.DrawMeshInstancedIndirect();
}
}
}