├── Assets ├── MarkerBasedARExample.meta ├── MarkerBasedARExample │ ├── Editor.meta │ ├── Editor │ │ ├── MarkerDesignPropertyDrawer.cs │ │ └── MarkerDesignPropertyDrawer.cs.meta │ ├── GyroSensorMarkerBasedARExample.meta │ ├── GyroSensorMarkerBasedARExample │ │ ├── GyroSensorMarkerBasedARExample.cs │ │ ├── GyroSensorMarkerBasedARExample.cs.meta │ │ ├── GyroSensorMarkerBasedARExample_Built-in.unity │ │ ├── GyroSensorMarkerBasedARExample_Built-in.unity.meta │ │ ├── GyroSensorMarkerBasedARExample_SRP.unity │ │ └── GyroSensorMarkerBasedARExample_SRP.unity.meta │ ├── MarkerBasedAR.meta │ ├── MarkerBasedAR │ │ ├── Marker.cs │ │ ├── Marker.cs.meta │ │ ├── MarkerDesign.cs │ │ ├── MarkerDesign.cs.meta │ │ ├── MarkerDetector.cs │ │ ├── MarkerDetector.cs.meta │ │ ├── MarkerSettings.cs │ │ └── MarkerSettings.cs.meta │ ├── MarkerBasedARExample.cs │ ├── MarkerBasedARExample.cs.meta │ ├── MarkerBasedARExample.unity │ ├── MarkerBasedARExample.unity.meta │ ├── Materials.meta │ ├── Materials │ │ ├── axes_x_material_Built-in.mat │ │ ├── axes_x_material_Built-in.mat.meta │ │ ├── axes_x_material_SRP.mat │ │ ├── axes_x_material_SRP.mat.meta │ │ ├── axes_y_material_Built-in.mat │ │ ├── axes_y_material_Built-in.mat.meta │ │ ├── axes_y_material_SRP.mat │ │ ├── axes_y_material_SRP.mat.meta │ │ ├── axes_z_material_Built-in.mat │ │ ├── axes_z_material_Built-in.mat.meta │ │ ├── axes_z_material_SRP.mat │ │ ├── axes_z_material_SRP.mat.meta │ │ ├── cube_material_Built-in.mat │ │ ├── cube_material_Built-in.mat.meta │ │ ├── cube_material_SRP.mat │ │ ├── cube_material_SRP.mat.meta │ │ ├── quad_material.mat │ │ ├── quad_material.mat.meta │ │ ├── sphere_material_Built-in.mat │ │ ├── sphere_material_Built-in.mat.meta │ │ ├── sphere_material_SRP.mat │ │ └── sphere_material_SRP.mat.meta │ ├── MultiSourceMarkerBasedARExample.meta │ ├── MultiSourceMarkerBasedARExample │ │ ├── MultiSourceMarkerBasedARExample.cs │ │ ├── MultiSourceMarkerBasedARExample.cs.meta │ │ ├── MultiSourceMarkerBasedARExample_Built-in.unity │ │ ├── MultiSourceMarkerBasedARExample_Built-in.unity.meta │ │ ├── MultiSourceMarkerBasedARExample_SRP.unity │ │ └── MultiSourceMarkerBasedARExample_SRP.unity.meta │ ├── Prefabs.meta │ ├── Prefabs │ │ ├── ARCamera.prefab │ │ ├── ARCamera.prefab.meta │ │ ├── Axes_X.prefab │ │ ├── Axes_X.prefab.meta │ │ ├── Axes_Y.prefab │ │ ├── Axes_Y.prefab.meta │ │ ├── Axes_Z.prefab │ │ ├── Axes_Z.prefab.meta │ │ ├── Cube.prefab │ │ ├── Cube.prefab.meta │ │ ├── MarkerSettings.prefab │ │ ├── MarkerSettings.prefab.meta │ │ ├── Sphere.prefab │ │ └── Sphere.prefab.meta │ ├── ReadMe.pdf │ ├── ReadMe.pdf.meta │ ├── Resources.meta │ ├── Resources │ │ ├── MarkerTest.jpg │ │ ├── MarkerTest.jpg.meta │ │ ├── MarkerTest2.jpg │ │ ├── MarkerTest2.jpg.meta │ │ ├── marker.png │ │ ├── marker.png.meta │ │ ├── marker2.png │ │ └── marker2.png.meta │ ├── Scripts.meta │ ├── Scripts │ │ ├── Utils.meta │ │ └── Utils │ │ │ ├── DelayableSetActive.cs │ │ │ ├── DelayableSetActive.cs.meta │ │ │ ├── FpsMonitor.meta │ │ │ ├── FpsMonitor │ │ │ ├── FpsMonitor.cs │ │ │ ├── FpsMonitor.cs.meta │ │ │ ├── Resources.meta │ │ │ └── Resources │ │ │ │ ├── FpsMonitorCanvas_104.prefab │ │ │ │ └── FpsMonitorCanvas_104.prefab.meta │ │ │ ├── InputModuleSwitcher.cs │ │ │ └── InputModuleSwitcher.cs.meta │ ├── ShowARMarker.cs │ ├── ShowARMarker.cs.meta │ ├── ShowARMarker.unity │ ├── ShowARMarker.unity.meta │ ├── ShowLicense.cs │ ├── ShowLicense.cs.meta │ ├── ShowLicense.unity │ ├── ShowLicense.unity.meta │ ├── Texture2DMarkerBasedARExample.meta │ └── Texture2DMarkerBasedARExample │ │ ├── Texture2DMarkerBasedARExample.cs │ │ ├── Texture2DMarkerBasedARExample.cs.meta │ │ ├── Texture2DMarkerBasedARExample_Built-in.unity │ │ ├── Texture2DMarkerBasedARExample_Built-in.unity.meta │ │ ├── Texture2DMarkerBasedARExample_SRP.unity │ │ └── Texture2DMarkerBasedARExample_SRP.unity.meta ├── StreamingAssets.meta └── StreamingAssets │ ├── MarkerBasedARExample.meta │ └── MarkerBasedARExample │ ├── MarkerBasedARExample_TestVideo_640_640_30fps.mp4 │ ├── MarkerBasedARExample_TestVideo_640_640_30fps.mp4.meta │ ├── MarkerTest.jpg │ ├── MarkerTest.jpg.meta │ ├── MarkerTest2.jpg │ └── MarkerTest2.jpg.meta └── README.md /Assets/MarkerBasedARExample.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Editor.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Editor/MarkerDesignPropertyDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Editor/MarkerDesignPropertyDrawer.cs -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Editor/MarkerDesignPropertyDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Editor/MarkerDesignPropertyDrawer.cs.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/GyroSensorMarkerBasedARExample.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/GyroSensorMarkerBasedARExample.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/GyroSensorMarkerBasedARExample/GyroSensorMarkerBasedARExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/GyroSensorMarkerBasedARExample/GyroSensorMarkerBasedARExample.cs -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/GyroSensorMarkerBasedARExample/GyroSensorMarkerBasedARExample.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/GyroSensorMarkerBasedARExample/GyroSensorMarkerBasedARExample.cs.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/GyroSensorMarkerBasedARExample/GyroSensorMarkerBasedARExample_Built-in.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/GyroSensorMarkerBasedARExample/GyroSensorMarkerBasedARExample_Built-in.unity -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/GyroSensorMarkerBasedARExample/GyroSensorMarkerBasedARExample_Built-in.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/GyroSensorMarkerBasedARExample/GyroSensorMarkerBasedARExample_Built-in.unity.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/GyroSensorMarkerBasedARExample/GyroSensorMarkerBasedARExample_SRP.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/GyroSensorMarkerBasedARExample/GyroSensorMarkerBasedARExample_SRP.unity -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/GyroSensorMarkerBasedARExample/GyroSensorMarkerBasedARExample_SRP.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/GyroSensorMarkerBasedARExample/GyroSensorMarkerBasedARExample_SRP.unity.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/MarkerBasedAR.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/MarkerBasedAR.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/MarkerBasedAR/Marker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/MarkerBasedAR/Marker.cs -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/MarkerBasedAR/Marker.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/MarkerBasedAR/Marker.cs.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/MarkerBasedAR/MarkerDesign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/MarkerBasedAR/MarkerDesign.cs -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/MarkerBasedAR/MarkerDesign.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/MarkerBasedAR/MarkerDesign.cs.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/MarkerBasedAR/MarkerDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/MarkerBasedAR/MarkerDetector.cs -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/MarkerBasedAR/MarkerDetector.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/MarkerBasedAR/MarkerDetector.cs.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/MarkerBasedAR/MarkerSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/MarkerBasedAR/MarkerSettings.cs -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/MarkerBasedAR/MarkerSettings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/MarkerBasedAR/MarkerSettings.cs.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/MarkerBasedARExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/MarkerBasedARExample.cs -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/MarkerBasedARExample.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/MarkerBasedARExample.cs.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/MarkerBasedARExample.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/MarkerBasedARExample.unity -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/MarkerBasedARExample.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/MarkerBasedARExample.unity.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Materials.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Materials/axes_x_material_Built-in.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Materials/axes_x_material_Built-in.mat -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Materials/axes_x_material_Built-in.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Materials/axes_x_material_Built-in.mat.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Materials/axes_x_material_SRP.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Materials/axes_x_material_SRP.mat -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Materials/axes_x_material_SRP.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Materials/axes_x_material_SRP.mat.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Materials/axes_y_material_Built-in.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Materials/axes_y_material_Built-in.mat -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Materials/axes_y_material_Built-in.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Materials/axes_y_material_Built-in.mat.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Materials/axes_y_material_SRP.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Materials/axes_y_material_SRP.mat -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Materials/axes_y_material_SRP.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Materials/axes_y_material_SRP.mat.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Materials/axes_z_material_Built-in.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Materials/axes_z_material_Built-in.mat -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Materials/axes_z_material_Built-in.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Materials/axes_z_material_Built-in.mat.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Materials/axes_z_material_SRP.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Materials/axes_z_material_SRP.mat -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Materials/axes_z_material_SRP.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Materials/axes_z_material_SRP.mat.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Materials/cube_material_Built-in.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Materials/cube_material_Built-in.mat -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Materials/cube_material_Built-in.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Materials/cube_material_Built-in.mat.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Materials/cube_material_SRP.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Materials/cube_material_SRP.mat -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Materials/cube_material_SRP.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Materials/cube_material_SRP.mat.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Materials/quad_material.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Materials/quad_material.mat -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Materials/quad_material.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Materials/quad_material.mat.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Materials/sphere_material_Built-in.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Materials/sphere_material_Built-in.mat -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Materials/sphere_material_Built-in.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Materials/sphere_material_Built-in.mat.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Materials/sphere_material_SRP.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Materials/sphere_material_SRP.mat -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Materials/sphere_material_SRP.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Materials/sphere_material_SRP.mat.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/MultiSourceMarkerBasedARExample.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/MultiSourceMarkerBasedARExample.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/MultiSourceMarkerBasedARExample/MultiSourceMarkerBasedARExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/MultiSourceMarkerBasedARExample/MultiSourceMarkerBasedARExample.cs -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/MultiSourceMarkerBasedARExample/MultiSourceMarkerBasedARExample.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/MultiSourceMarkerBasedARExample/MultiSourceMarkerBasedARExample.cs.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/MultiSourceMarkerBasedARExample/MultiSourceMarkerBasedARExample_Built-in.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/MultiSourceMarkerBasedARExample/MultiSourceMarkerBasedARExample_Built-in.unity -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/MultiSourceMarkerBasedARExample/MultiSourceMarkerBasedARExample_Built-in.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/MultiSourceMarkerBasedARExample/MultiSourceMarkerBasedARExample_Built-in.unity.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/MultiSourceMarkerBasedARExample/MultiSourceMarkerBasedARExample_SRP.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/MultiSourceMarkerBasedARExample/MultiSourceMarkerBasedARExample_SRP.unity -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/MultiSourceMarkerBasedARExample/MultiSourceMarkerBasedARExample_SRP.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/MultiSourceMarkerBasedARExample/MultiSourceMarkerBasedARExample_SRP.unity.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Prefabs.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Prefabs/ARCamera.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Prefabs/ARCamera.prefab -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Prefabs/ARCamera.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Prefabs/ARCamera.prefab.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Prefabs/Axes_X.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Prefabs/Axes_X.prefab -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Prefabs/Axes_X.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Prefabs/Axes_X.prefab.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Prefabs/Axes_Y.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Prefabs/Axes_Y.prefab -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Prefabs/Axes_Y.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Prefabs/Axes_Y.prefab.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Prefabs/Axes_Z.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Prefabs/Axes_Z.prefab -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Prefabs/Axes_Z.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Prefabs/Axes_Z.prefab.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Prefabs/Cube.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Prefabs/Cube.prefab -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Prefabs/Cube.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Prefabs/Cube.prefab.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Prefabs/MarkerSettings.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Prefabs/MarkerSettings.prefab -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Prefabs/MarkerSettings.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Prefabs/MarkerSettings.prefab.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Prefabs/Sphere.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Prefabs/Sphere.prefab -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Prefabs/Sphere.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Prefabs/Sphere.prefab.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/ReadMe.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/ReadMe.pdf -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/ReadMe.pdf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/ReadMe.pdf.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Resources.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Resources/MarkerTest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Resources/MarkerTest.jpg -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Resources/MarkerTest.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Resources/MarkerTest.jpg.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Resources/MarkerTest2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Resources/MarkerTest2.jpg -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Resources/MarkerTest2.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Resources/MarkerTest2.jpg.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Resources/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Resources/marker.png -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Resources/marker.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Resources/marker.png.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Resources/marker2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Resources/marker2.png -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Resources/marker2.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Resources/marker2.png.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Scripts.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Scripts/Utils.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Scripts/Utils.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Scripts/Utils/DelayableSetActive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Scripts/Utils/DelayableSetActive.cs -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Scripts/Utils/DelayableSetActive.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Scripts/Utils/DelayableSetActive.cs.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Scripts/Utils/FpsMonitor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Scripts/Utils/FpsMonitor.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Scripts/Utils/FpsMonitor/FpsMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Scripts/Utils/FpsMonitor/FpsMonitor.cs -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Scripts/Utils/FpsMonitor/FpsMonitor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Scripts/Utils/FpsMonitor/FpsMonitor.cs.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Scripts/Utils/FpsMonitor/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Scripts/Utils/FpsMonitor/Resources.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Scripts/Utils/FpsMonitor/Resources/FpsMonitorCanvas_104.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Scripts/Utils/FpsMonitor/Resources/FpsMonitorCanvas_104.prefab -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Scripts/Utils/FpsMonitor/Resources/FpsMonitorCanvas_104.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Scripts/Utils/FpsMonitor/Resources/FpsMonitorCanvas_104.prefab.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Scripts/Utils/InputModuleSwitcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Scripts/Utils/InputModuleSwitcher.cs -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Scripts/Utils/InputModuleSwitcher.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Scripts/Utils/InputModuleSwitcher.cs.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/ShowARMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/ShowARMarker.cs -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/ShowARMarker.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/ShowARMarker.cs.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/ShowARMarker.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/ShowARMarker.unity -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/ShowARMarker.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/ShowARMarker.unity.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/ShowLicense.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/ShowLicense.cs -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/ShowLicense.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/ShowLicense.cs.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/ShowLicense.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/ShowLicense.unity -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/ShowLicense.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/ShowLicense.unity.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Texture2DMarkerBasedARExample.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Texture2DMarkerBasedARExample.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Texture2DMarkerBasedARExample/Texture2DMarkerBasedARExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Texture2DMarkerBasedARExample/Texture2DMarkerBasedARExample.cs -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Texture2DMarkerBasedARExample/Texture2DMarkerBasedARExample.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Texture2DMarkerBasedARExample/Texture2DMarkerBasedARExample.cs.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Texture2DMarkerBasedARExample/Texture2DMarkerBasedARExample_Built-in.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Texture2DMarkerBasedARExample/Texture2DMarkerBasedARExample_Built-in.unity -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Texture2DMarkerBasedARExample/Texture2DMarkerBasedARExample_Built-in.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Texture2DMarkerBasedARExample/Texture2DMarkerBasedARExample_Built-in.unity.meta -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Texture2DMarkerBasedARExample/Texture2DMarkerBasedARExample_SRP.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Texture2DMarkerBasedARExample/Texture2DMarkerBasedARExample_SRP.unity -------------------------------------------------------------------------------- /Assets/MarkerBasedARExample/Texture2DMarkerBasedARExample/Texture2DMarkerBasedARExample_SRP.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/MarkerBasedARExample/Texture2DMarkerBasedARExample/Texture2DMarkerBasedARExample_SRP.unity.meta -------------------------------------------------------------------------------- /Assets/StreamingAssets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/StreamingAssets.meta -------------------------------------------------------------------------------- /Assets/StreamingAssets/MarkerBasedARExample.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/StreamingAssets/MarkerBasedARExample.meta -------------------------------------------------------------------------------- /Assets/StreamingAssets/MarkerBasedARExample/MarkerBasedARExample_TestVideo_640_640_30fps.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/StreamingAssets/MarkerBasedARExample/MarkerBasedARExample_TestVideo_640_640_30fps.mp4 -------------------------------------------------------------------------------- /Assets/StreamingAssets/MarkerBasedARExample/MarkerBasedARExample_TestVideo_640_640_30fps.mp4.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/StreamingAssets/MarkerBasedARExample/MarkerBasedARExample_TestVideo_640_640_30fps.mp4.meta -------------------------------------------------------------------------------- /Assets/StreamingAssets/MarkerBasedARExample/MarkerTest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/StreamingAssets/MarkerBasedARExample/MarkerTest.jpg -------------------------------------------------------------------------------- /Assets/StreamingAssets/MarkerBasedARExample/MarkerTest.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/StreamingAssets/MarkerBasedARExample/MarkerTest.jpg.meta -------------------------------------------------------------------------------- /Assets/StreamingAssets/MarkerBasedARExample/MarkerTest2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/StreamingAssets/MarkerBasedARExample/MarkerTest2.jpg -------------------------------------------------------------------------------- /Assets/StreamingAssets/MarkerBasedARExample/MarkerTest2.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/Assets/StreamingAssets/MarkerBasedARExample/MarkerTest2.jpg.meta -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnoxSoftware/MarkerBasedARExample/HEAD/README.md --------------------------------------------------------------------------------