diff options
author | tylermurphy534 <tylermurphy534@gmail.com> | 2022-11-06 15:12:42 -0500 |
---|---|---|
committer | tylermurphy534 <tylermurphy534@gmail.com> | 2022-11-06 15:12:42 -0500 |
commit | eb84bb298d2b95aec7b2ae12cbf25ac64f25379a (patch) | |
tree | efd616a157df06ab661c6d56651853431ac6b08b /VRCSDK3Worlds/Assets/Bakery/BakerySectorCapture.cs | |
download | unityprojects-eb84bb298d2b95aec7b2ae12cbf25ac64f25379a.tar.gz unityprojects-eb84bb298d2b95aec7b2ae12cbf25ac64f25379a.tar.bz2 unityprojects-eb84bb298d2b95aec7b2ae12cbf25ac64f25379a.zip |
move to self host
Diffstat (limited to 'VRCSDK3Worlds/Assets/Bakery/BakerySectorCapture.cs')
-rw-r--r-- | VRCSDK3Worlds/Assets/Bakery/BakerySectorCapture.cs | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/VRCSDK3Worlds/Assets/Bakery/BakerySectorCapture.cs b/VRCSDK3Worlds/Assets/Bakery/BakerySectorCapture.cs new file mode 100644 index 00000000..ce98df80 --- /dev/null +++ b/VRCSDK3Worlds/Assets/Bakery/BakerySectorCapture.cs @@ -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 +} + |