11 lines
181 B
C#
11 lines
181 B
C#
|
using System;
|
||
|
using Cinemachine;
|
||
|
|
||
|
[Serializable]
|
||
|
public class CameraItem
|
||
|
{
|
||
|
public CameraTypeEnum type;
|
||
|
public CinemachineVirtualCamera camera;
|
||
|
public bool switchable;
|
||
|
}
|