├── .gitignore ├── Assets ├── .gitignore ├── Example.meta ├── Example │ ├── Materials.meta │ ├── Materials │ │ ├── Plane 1.mat │ │ ├── Plane 1.mat.meta │ │ ├── Plane 2.mat │ │ ├── Plane 2.mat.meta │ │ ├── Plane 3.mat │ │ ├── Plane 3.mat.meta │ │ ├── Plane 4.mat │ │ ├── Plane 4.mat.meta │ │ ├── Plane 5.mat │ │ ├── Plane 5.mat.meta │ │ ├── Plane.mat │ │ └── Plane.mat.meta │ ├── Prefab.meta │ ├── Prefab │ │ ├── Cube.prefab │ │ └── Cube.prefab.meta │ ├── Scene.meta │ ├── Scene │ │ ├── Example.unity │ │ └── Example.unity.meta │ ├── Script.meta │ └── Script │ │ ├── CubeAnimation.cs │ │ └── CubeAnimation.cs.meta ├── Hologram Area.meta └── Hologram Area │ ├── Material.meta │ ├── Material │ ├── Camera Cut Out.mat │ └── Camera Cut Out.mat.meta │ ├── Prefab.meta │ ├── Prefab │ ├── Hologram Area.prefab │ └── Hologram Area.prefab.meta │ ├── Scripts.meta │ └── Scripts │ ├── Hologram.cs │ └── Hologram.cs.meta └── README.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KainosSoftwareLtd/PeppersGhostPyramid/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/.gitignore: -------------------------------------------------------------------------------- 1 | !* -------------------------------------------------------------------------------- /Assets/Example.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KainosSoftwareLtd/PeppersGhostPyramid/HEAD/Assets/Example.meta -------------------------------------------------------------------------------- /Assets/Example/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KainosSoftwareLtd/PeppersGhostPyramid/HEAD/Assets/Example/Materials.meta -------------------------------------------------------------------------------- /Assets/Example/Materials/Plane 1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KainosSoftwareLtd/PeppersGhostPyramid/HEAD/Assets/Example/Materials/Plane 1.mat -------------------------------------------------------------------------------- /Assets/Example/Materials/Plane 1.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KainosSoftwareLtd/PeppersGhostPyramid/HEAD/Assets/Example/Materials/Plane 1.mat.meta -------------------------------------------------------------------------------- /Assets/Example/Materials/Plane 2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KainosSoftwareLtd/PeppersGhostPyramid/HEAD/Assets/Example/Materials/Plane 2.mat -------------------------------------------------------------------------------- /Assets/Example/Materials/Plane 2.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KainosSoftwareLtd/PeppersGhostPyramid/HEAD/Assets/Example/Materials/Plane 2.mat.meta -------------------------------------------------------------------------------- /Assets/Example/Materials/Plane 3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KainosSoftwareLtd/PeppersGhostPyramid/HEAD/Assets/Example/Materials/Plane 3.mat -------------------------------------------------------------------------------- /Assets/Example/Materials/Plane 3.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KainosSoftwareLtd/PeppersGhostPyramid/HEAD/Assets/Example/Materials/Plane 3.mat.meta -------------------------------------------------------------------------------- /Assets/Example/Materials/Plane 4.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KainosSoftwareLtd/PeppersGhostPyramid/HEAD/Assets/Example/Materials/Plane 4.mat -------------------------------------------------------------------------------- /Assets/Example/Materials/Plane 4.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KainosSoftwareLtd/PeppersGhostPyramid/HEAD/Assets/Example/Materials/Plane 4.mat.meta -------------------------------------------------------------------------------- /Assets/Example/Materials/Plane 5.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KainosSoftwareLtd/PeppersGhostPyramid/HEAD/Assets/Example/Materials/Plane 5.mat -------------------------------------------------------------------------------- /Assets/Example/Materials/Plane 5.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KainosSoftwareLtd/PeppersGhostPyramid/HEAD/Assets/Example/Materials/Plane 5.mat.meta -------------------------------------------------------------------------------- /Assets/Example/Materials/Plane.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KainosSoftwareLtd/PeppersGhostPyramid/HEAD/Assets/Example/Materials/Plane.mat -------------------------------------------------------------------------------- /Assets/Example/Materials/Plane.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KainosSoftwareLtd/PeppersGhostPyramid/HEAD/Assets/Example/Materials/Plane.mat.meta -------------------------------------------------------------------------------- /Assets/Example/Prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KainosSoftwareLtd/PeppersGhostPyramid/HEAD/Assets/Example/Prefab.meta -------------------------------------------------------------------------------- /Assets/Example/Prefab/Cube.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KainosSoftwareLtd/PeppersGhostPyramid/HEAD/Assets/Example/Prefab/Cube.prefab -------------------------------------------------------------------------------- /Assets/Example/Prefab/Cube.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KainosSoftwareLtd/PeppersGhostPyramid/HEAD/Assets/Example/Prefab/Cube.prefab.meta -------------------------------------------------------------------------------- /Assets/Example/Scene.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KainosSoftwareLtd/PeppersGhostPyramid/HEAD/Assets/Example/Scene.meta -------------------------------------------------------------------------------- /Assets/Example/Scene/Example.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KainosSoftwareLtd/PeppersGhostPyramid/HEAD/Assets/Example/Scene/Example.unity -------------------------------------------------------------------------------- /Assets/Example/Scene/Example.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KainosSoftwareLtd/PeppersGhostPyramid/HEAD/Assets/Example/Scene/Example.unity.meta -------------------------------------------------------------------------------- /Assets/Example/Script.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KainosSoftwareLtd/PeppersGhostPyramid/HEAD/Assets/Example/Script.meta -------------------------------------------------------------------------------- /Assets/Example/Script/CubeAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KainosSoftwareLtd/PeppersGhostPyramid/HEAD/Assets/Example/Script/CubeAnimation.cs -------------------------------------------------------------------------------- /Assets/Example/Script/CubeAnimation.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KainosSoftwareLtd/PeppersGhostPyramid/HEAD/Assets/Example/Script/CubeAnimation.cs.meta -------------------------------------------------------------------------------- /Assets/Hologram Area.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KainosSoftwareLtd/PeppersGhostPyramid/HEAD/Assets/Hologram Area.meta -------------------------------------------------------------------------------- /Assets/Hologram Area/Material.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KainosSoftwareLtd/PeppersGhostPyramid/HEAD/Assets/Hologram Area/Material.meta -------------------------------------------------------------------------------- /Assets/Hologram Area/Material/Camera Cut Out.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KainosSoftwareLtd/PeppersGhostPyramid/HEAD/Assets/Hologram Area/Material/Camera Cut Out.mat -------------------------------------------------------------------------------- /Assets/Hologram Area/Material/Camera Cut Out.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KainosSoftwareLtd/PeppersGhostPyramid/HEAD/Assets/Hologram Area/Material/Camera Cut Out.mat.meta -------------------------------------------------------------------------------- /Assets/Hologram Area/Prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KainosSoftwareLtd/PeppersGhostPyramid/HEAD/Assets/Hologram Area/Prefab.meta -------------------------------------------------------------------------------- /Assets/Hologram Area/Prefab/Hologram Area.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KainosSoftwareLtd/PeppersGhostPyramid/HEAD/Assets/Hologram Area/Prefab/Hologram Area.prefab -------------------------------------------------------------------------------- /Assets/Hologram Area/Prefab/Hologram Area.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KainosSoftwareLtd/PeppersGhostPyramid/HEAD/Assets/Hologram Area/Prefab/Hologram Area.prefab.meta -------------------------------------------------------------------------------- /Assets/Hologram Area/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KainosSoftwareLtd/PeppersGhostPyramid/HEAD/Assets/Hologram Area/Scripts.meta -------------------------------------------------------------------------------- /Assets/Hologram Area/Scripts/Hologram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KainosSoftwareLtd/PeppersGhostPyramid/HEAD/Assets/Hologram Area/Scripts/Hologram.cs -------------------------------------------------------------------------------- /Assets/Hologram Area/Scripts/Hologram.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KainosSoftwareLtd/PeppersGhostPyramid/HEAD/Assets/Hologram Area/Scripts/Hologram.cs.meta -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KainosSoftwareLtd/PeppersGhostPyramid/HEAD/README.txt --------------------------------------------------------------------------------