add scene fixes

This commit is contained in:
2022-10-13 16:19:21 +05:00
parent 6bf38ac848
commit 30b81ed376
1183 changed files with 266382 additions and 1317 deletions
+27
View File
@@ -0,0 +1,27 @@
using UnityEngine;
using System.Collections.Generic;
public class BakerySectorCapture : ScriptableObject
{
#if UNITY_EDITOR
[SerializeField]
public Vector3 sectorPos;
[SerializeField]
public Quaternion sectorRot;
[SerializeField]
public List<Mesh> meshes;
[SerializeField]
public List<Vector3> positions;
[SerializeField]
public List<Texture2D> textures;
public List<Renderer> outsideRenderers;
public bool write = false;
#endif
}