├── .gitignore ├── Assets ├── OffscreenMarker.cs ├── OffscreenMarker.cs.meta ├── arrow.png ├── arrow.png.meta ├── e0.mat ├── e0.mat.meta ├── e1.mat ├── e1.mat.meta ├── e2.mat ├── e2.mat.meta ├── grid.mat ├── grid.mat.meta ├── grid.png ├── grid.png.meta ├── offscreen_markers.unity ├── offscreen_markers.unity.meta ├── portrait_0.png ├── portrait_0.png.meta ├── portrait_1.png ├── portrait_1.png.meta ├── portrait_2.png └── portrait_2.png.meta ├── LICENSE ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset └── VFXManager.asset ├── README.md └── offscreen_markers.gif /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | Library/ 3 | Logs/ 4 | Packages/ 5 | Temp/ 6 | -------------------------------------------------------------------------------- /Assets/OffscreenMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloedi/offscreen_markers/HEAD/Assets/OffscreenMarker.cs -------------------------------------------------------------------------------- /Assets/OffscreenMarker.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloedi/offscreen_markers/HEAD/Assets/OffscreenMarker.cs.meta -------------------------------------------------------------------------------- /Assets/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloedi/offscreen_markers/HEAD/Assets/arrow.png -------------------------------------------------------------------------------- /Assets/arrow.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloedi/offscreen_markers/HEAD/Assets/arrow.png.meta -------------------------------------------------------------------------------- /Assets/e0.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloedi/offscreen_markers/HEAD/Assets/e0.mat -------------------------------------------------------------------------------- /Assets/e0.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloedi/offscreen_markers/HEAD/Assets/e0.mat.meta -------------------------------------------------------------------------------- /Assets/e1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloedi/offscreen_markers/HEAD/Assets/e1.mat -------------------------------------------------------------------------------- /Assets/e1.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloedi/offscreen_markers/HEAD/Assets/e1.mat.meta -------------------------------------------------------------------------------- /Assets/e2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloedi/offscreen_markers/HEAD/Assets/e2.mat -------------------------------------------------------------------------------- /Assets/e2.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloedi/offscreen_markers/HEAD/Assets/e2.mat.meta -------------------------------------------------------------------------------- /Assets/grid.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloedi/offscreen_markers/HEAD/Assets/grid.mat -------------------------------------------------------------------------------- /Assets/grid.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloedi/offscreen_markers/HEAD/Assets/grid.mat.meta -------------------------------------------------------------------------------- /Assets/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloedi/offscreen_markers/HEAD/Assets/grid.png -------------------------------------------------------------------------------- /Assets/grid.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloedi/offscreen_markers/HEAD/Assets/grid.png.meta -------------------------------------------------------------------------------- /Assets/offscreen_markers.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloedi/offscreen_markers/HEAD/Assets/offscreen_markers.unity -------------------------------------------------------------------------------- /Assets/offscreen_markers.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloedi/offscreen_markers/HEAD/Assets/offscreen_markers.unity.meta -------------------------------------------------------------------------------- /Assets/portrait_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloedi/offscreen_markers/HEAD/Assets/portrait_0.png -------------------------------------------------------------------------------- /Assets/portrait_0.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloedi/offscreen_markers/HEAD/Assets/portrait_0.png.meta -------------------------------------------------------------------------------- /Assets/portrait_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloedi/offscreen_markers/HEAD/Assets/portrait_1.png -------------------------------------------------------------------------------- /Assets/portrait_1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloedi/offscreen_markers/HEAD/Assets/portrait_1.png.meta -------------------------------------------------------------------------------- /Assets/portrait_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloedi/offscreen_markers/HEAD/Assets/portrait_2.png -------------------------------------------------------------------------------- /Assets/portrait_2.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloedi/offscreen_markers/HEAD/Assets/portrait_2.png.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloedi/offscreen_markers/HEAD/LICENSE -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloedi/offscreen_markers/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloedi/offscreen_markers/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloedi/offscreen_markers/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloedi/offscreen_markers/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloedi/offscreen_markers/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloedi/offscreen_markers/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloedi/offscreen_markers/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloedi/offscreen_markers/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloedi/offscreen_markers/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloedi/offscreen_markers/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloedi/offscreen_markers/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2018.4.5f1 2 | -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloedi/offscreen_markers/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloedi/offscreen_markers/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloedi/offscreen_markers/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloedi/offscreen_markers/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloedi/offscreen_markers/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloedi/offscreen_markers/HEAD/README.md -------------------------------------------------------------------------------- /offscreen_markers.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zloedi/offscreen_markers/HEAD/offscreen_markers.gif --------------------------------------------------------------------------------