11 lines
134 B
C#
11 lines
134 B
C#
|
using System;
|
||
|
using UnityEngine;
|
||
|
|
||
|
[Serializable]
|
||
|
public class CameraView
|
||
|
{
|
||
|
public Camera camera;
|
||
|
|
||
|
public Material cameraMaterial;
|
||
|
}
|