Files
Dpr-ScriptsOnly/Assets/EventCameraTable.cs

21 lines
432 B
C#
Raw Permalink Normal View History

2023-06-20 13:17:31 -05:00
using System.Collections;
using System.Collections.Generic;
using System.Reflection;
using UnityEngine;
[CreateAssetMenuAttribute]
public class EventCameraTable : ScriptableObject
{
public GameObject curve; // EventCameraCurveTable
public GameObject[] table; // EventCameraData[]
public GameObject get_Item(int index) // EventCameraData
{
return null;
}
public EventCameraTable()
{
}
}