├── .gitignore ├── README.md ├── docs ├── assets │ ├── cover.png │ ├── face-debugger │ │ ├── step1.png │ │ ├── step2.png │ │ └── step3.png │ ├── face-tracking-quickstart │ │ └── faceMeshTrackers.png │ ├── flashcards │ │ ├── bear-color.png │ │ └── raccoon-color.png │ ├── image-debugger │ │ ├── image-debugger.png │ │ ├── step1.png │ │ ├── step2.png │ │ ├── step3.png │ │ └── step4.png │ ├── image-tracking-quickstart │ │ └── quad.png │ └── video-overlay │ │ └── video-overlay-target.png ├── demo │ ├── facemesh │ │ ├── Build │ │ │ ├── facemesh.data │ │ │ ├── facemesh.framework.js │ │ │ ├── facemesh.loader.js │ │ │ └── facemesh.wasm │ │ ├── StreamingAssets │ │ │ └── UnityServicesProjectConfiguration.json │ │ └── index.html │ ├── flashcards │ │ ├── Build │ │ │ ├── flashcards.data │ │ │ ├── flashcards.framework.js │ │ │ ├── flashcards.loader.js │ │ │ └── flashcards.wasm │ │ ├── StreamingAssets │ │ │ ├── UnityServicesProjectConfiguration.json │ │ │ └── flash-cards.mind │ │ └── index.html │ ├── tryon │ │ ├── Build │ │ │ ├── tryon.data │ │ │ ├── tryon.framework.js │ │ │ ├── tryon.loader.js │ │ │ └── tryon.wasm │ │ ├── StreamingAssets │ │ │ └── UnityServicesProjectConfiguration.json │ │ └── index.html │ └── video-overlay │ │ ├── Build │ │ ├── video-overlay.data │ │ ├── video-overlay.framework.js │ │ ├── video-overlay.loader.js │ │ └── video-overlay.wasm │ │ ├── StreamingAssets │ │ ├── UnityServicesProjectConfiguration.json │ │ ├── video-overlay-target.mind │ │ └── video-overlay.mp4 │ │ └── index.html ├── examples.html ├── face-tracking-debugger.html ├── face-tracking-quickstart.html ├── image-tracking-debugger.html ├── image-tracking-quickstart.html ├── index.html └── style.css └── sample-projects ├── FaceMask ├── .vscode │ └── settings.json ├── Assets │ ├── FaceMaterial.mat │ ├── FaceMaterial.mat.meta │ ├── Scenes.meta │ ├── Scenes │ │ ├── SampleScene.unity │ │ └── SampleScene.unity.meta │ ├── WebAR Foundation.meta │ ├── WebGLTemplates.meta │ ├── WebGLTemplates │ │ ├── FullScreen.meta │ │ └── FullScreen │ │ │ ├── index.html │ │ │ └── index.html.meta │ ├── faceMeshTrackers.png │ ├── faceMeshTrackers.png.meta │ ├── faceMeshTrackers3.png │ └── faceMeshTrackers3.png.meta ├── Packages │ ├── manifest.json │ └── packages-lock.json └── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── MemorySettings.asset │ ├── NavMeshAreas.asset │ ├── PackageManagerSettings.asset │ ├── Packages │ └── com.unity.testtools.codecoverage │ │ └── Settings.json │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── SceneTemplateSettings.json │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ ├── VersionControlSettings.asset │ ├── XRSettings.asset │ └── boot.config ├── FlashCards ├── .gitignore ├── .vscode │ └── settings.json ├── Assets │ ├── 3DAssets.meta │ ├── 3DAssets │ │ ├── Bear.meta │ │ ├── Bear │ │ │ ├── Bear Animator Controller.controller │ │ │ ├── Bear Animator Controller.controller.meta │ │ │ ├── Cello_paint.mat │ │ │ ├── Cello_paint.mat.meta │ │ │ ├── Cello_paint_baseColor.png │ │ │ ├── Cello_paint_baseColor.png.meta │ │ │ ├── bear-color.png │ │ │ ├── bear-color.png.meta │ │ │ ├── bear.fbx │ │ │ ├── bear.fbx.meta │ │ │ ├── bear_paint 1.mat │ │ │ ├── bear_paint 1.mat.meta │ │ │ ├── bear_paint.mat │ │ │ └── bear_paint.mat.meta │ │ ├── Raccoon.meta │ │ └── Raccoon │ │ │ ├── Raccoon Animator Controller.controller │ │ │ ├── Raccoon Animator Controller.controller.meta │ │ │ ├── drum_defaultCol.mat │ │ │ ├── drum_defaultCol.mat.meta │ │ │ ├── drum_defaultCol_baseColor.png │ │ │ ├── drum_defaultCol_baseColor.png.meta │ │ │ ├── drum_paint.mat │ │ │ ├── drum_paint.mat.meta │ │ │ ├── drum_paint_baseColor.png │ │ │ ├── drum_paint_baseColor.png.meta │ │ │ ├── raccoon.fbx │ │ │ ├── raccoon.fbx.meta │ │ │ ├── raccoon_paint.mat │ │ │ ├── raccoon_paint.mat.meta │ │ │ ├── raccoon_paint_baseColor.png │ │ │ ├── raccoon_paint_baseColor.png.meta │ │ │ ├── stick.mat │ │ │ └── stick.mat.meta │ ├── Scenes.meta │ ├── Scenes │ │ ├── SampleScene.unity │ │ └── SampleScene.unity.meta │ ├── StreamingAssets.meta │ ├── StreamingAssets │ │ ├── flash-cards.mind │ │ └── flash-cards.mind.meta │ ├── WebAR Foundation.meta │ ├── WebGLTemplates.meta │ └── WebGLTemplates │ │ ├── FullScreen.meta │ │ └── FullScreen │ │ ├── index.html │ │ └── index.html.meta ├── Packages │ ├── manifest.json │ └── packages-lock.json └── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── MemorySettings.asset │ ├── NavMeshAreas.asset │ ├── PackageManagerSettings.asset │ ├── Packages │ └── com.unity.testtools.codecoverage │ │ └── Settings.json │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── SceneTemplateSettings.json │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ ├── VersionControlSettings.asset │ ├── XRSettings.asset │ └── boot.config ├── TryOn ├── .vscode │ └── settings.json ├── Assets │ ├── Glasses.meta │ ├── Glasses │ │ ├── Glass Animator Controller.controller │ │ ├── Glass Animator Controller.controller.meta │ │ ├── Spoilervision Glasses.fbx │ │ ├── Spoilervision Glasses.fbx.meta │ │ ├── Spoilervision.mat │ │ ├── Spoilervision.mat.meta │ │ ├── glasses-thumbnail.png │ │ ├── glasses-thumbnail.png.meta │ │ ├── license.txt │ │ ├── license.txt.meta │ │ ├── textures.meta │ │ └── textures │ │ │ ├── Spoilervision_AO.jpg │ │ │ ├── Spoilervision_AO.jpg.meta │ │ │ ├── Spoilervision_albedo.jpg │ │ │ ├── Spoilervision_albedo.jpg.meta │ │ │ ├── Spoilervision_metallic.jpg │ │ │ ├── Spoilervision_metallic.jpg.meta │ │ │ ├── Spoilervision_normal.png │ │ │ ├── Spoilervision_normal.png.meta │ │ │ ├── Spoilervision_roughness.jpg │ │ │ └── Spoilervision_roughness.jpg.meta │ ├── Hat.meta │ ├── Hat │ │ ├── HAT2.fbx │ │ ├── HAT2.fbx.meta │ │ ├── hat-thumbnail.png │ │ ├── hat-thumbnail.png.meta │ │ ├── license.txt │ │ └── license.txt.meta │ ├── Mustache.meta │ ├── Mustache │ │ ├── crayfishdiffuse.mat │ │ ├── crayfishdiffuse.mat.meta │ │ ├── license.txt │ │ ├── license.txt.meta │ │ ├── mustache-thumbnail.png │ │ ├── mustache-thumbnail.png.meta │ │ ├── mustache_from_poly_by_google.fbx │ │ └── mustache_from_poly_by_google.fbx.meta │ ├── Scenes.meta │ ├── Scenes │ │ ├── SampleScene.unity │ │ └── SampleScene.unity.meta │ ├── TextMesh Pro.meta │ ├── TextMesh Pro │ │ ├── Documentation.meta │ │ ├── Documentation │ │ │ ├── TextMesh Pro User Guide 2016.pdf │ │ │ └── TextMesh Pro User Guide 2016.pdf.meta │ │ ├── Fonts.meta │ │ ├── Fonts │ │ │ ├── LiberationSans - OFL.txt │ │ │ ├── LiberationSans - OFL.txt.meta │ │ │ ├── LiberationSans.ttf │ │ │ └── LiberationSans.ttf.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── Fonts & Materials.meta │ │ │ ├── Fonts & Materials │ │ │ │ ├── LiberationSans SDF - Drop Shadow.mat │ │ │ │ ├── LiberationSans SDF - Drop Shadow.mat.meta │ │ │ │ ├── LiberationSans SDF - Fallback.asset │ │ │ │ ├── LiberationSans SDF - Fallback.asset.meta │ │ │ │ ├── LiberationSans SDF - Outline.mat │ │ │ │ ├── LiberationSans SDF - Outline.mat.meta │ │ │ │ ├── LiberationSans SDF.asset │ │ │ │ └── LiberationSans SDF.asset.meta │ │ │ ├── LineBreaking Following Characters.txt │ │ │ ├── LineBreaking Following Characters.txt.meta │ │ │ ├── LineBreaking Leading Characters.txt │ │ │ ├── LineBreaking Leading Characters.txt.meta │ │ │ ├── Sprite Assets.meta │ │ │ ├── Sprite Assets │ │ │ │ ├── EmojiOne.asset │ │ │ │ └── EmojiOne.asset.meta │ │ │ ├── Style Sheets.meta │ │ │ ├── Style Sheets │ │ │ │ ├── Default Style Sheet.asset │ │ │ │ └── Default Style Sheet.asset.meta │ │ │ ├── TMP Settings.asset │ │ │ └── TMP Settings.asset.meta │ │ ├── Shaders.meta │ │ ├── Shaders │ │ │ ├── TMP_Bitmap-Custom-Atlas.shader │ │ │ ├── TMP_Bitmap-Custom-Atlas.shader.meta │ │ │ ├── TMP_Bitmap-Mobile.shader │ │ │ ├── TMP_Bitmap-Mobile.shader.meta │ │ │ ├── TMP_Bitmap.shader │ │ │ ├── TMP_Bitmap.shader.meta │ │ │ ├── TMP_SDF Overlay.shader │ │ │ ├── TMP_SDF Overlay.shader.meta │ │ │ ├── TMP_SDF SSD.shader │ │ │ ├── TMP_SDF SSD.shader.meta │ │ │ ├── TMP_SDF-Mobile Masking.shader │ │ │ ├── TMP_SDF-Mobile Masking.shader.meta │ │ │ ├── TMP_SDF-Mobile Overlay.shader │ │ │ ├── TMP_SDF-Mobile Overlay.shader.meta │ │ │ ├── TMP_SDF-Mobile SSD.shader │ │ │ ├── TMP_SDF-Mobile SSD.shader.meta │ │ │ ├── TMP_SDF-Mobile.shader │ │ │ ├── TMP_SDF-Mobile.shader.meta │ │ │ ├── TMP_SDF-Surface-Mobile.shader │ │ │ ├── TMP_SDF-Surface-Mobile.shader.meta │ │ │ ├── TMP_SDF-Surface.shader │ │ │ ├── TMP_SDF-Surface.shader.meta │ │ │ ├── TMP_SDF.shader │ │ │ ├── TMP_SDF.shader.meta │ │ │ ├── TMP_Sprite.shader │ │ │ ├── TMP_Sprite.shader.meta │ │ │ ├── TMPro.cginc │ │ │ ├── TMPro.cginc.meta │ │ │ ├── TMPro_Mobile.cginc │ │ │ ├── TMPro_Mobile.cginc.meta │ │ │ ├── TMPro_Properties.cginc │ │ │ ├── TMPro_Properties.cginc.meta │ │ │ ├── TMPro_Surface.cginc │ │ │ └── TMPro_Surface.cginc.meta │ │ ├── Sprites.meta │ │ └── Sprites │ │ │ ├── EmojiOne Attribution.txt │ │ │ ├── EmojiOne Attribution.txt.meta │ │ │ ├── EmojiOne.json │ │ │ ├── EmojiOne.json.meta │ │ │ ├── EmojiOne.png │ │ │ └── EmojiOne.png.meta │ ├── TryOnController.cs │ ├── TryOnController.cs.meta │ ├── WebAR Foundation.meta │ ├── WebGLTemplates.meta │ └── WebGLTemplates │ │ ├── FullScreen.meta │ │ └── FullScreen │ │ ├── index.html │ │ └── index.html.meta ├── Packages │ ├── manifest.json │ └── packages-lock.json └── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── MemorySettings.asset │ ├── NavMeshAreas.asset │ ├── PackageManagerSettings.asset │ ├── Packages │ └── com.unity.testtools.codecoverage │ │ └── Settings.json │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── SceneTemplateSettings.json │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ ├── VersionControlSettings.asset │ ├── XRSettings.asset │ └── boot.config └── VideoOverlay ├── .vscode └── settings.json ├── Assets ├── Scenes.meta ├── Scenes │ ├── SampleScene.unity │ ├── SampleScene.unity.meta │ ├── VIdeoRender Texture.renderTexture │ ├── VIdeoRender Texture.renderTexture.meta │ ├── VideoMaterial.mat │ ├── VideoMaterial.mat.meta │ ├── VideoPlaceholderMaterial.mat │ ├── VideoPlaceholderMaterial.mat.meta │ ├── video-overlay-target.png │ └── video-overlay-target.png.meta ├── StreamingAssets.meta ├── StreamingAssets │ ├── video-overlay-target.mind │ ├── video-overlay-target.mind.meta │ ├── video-overlay.mp4 │ └── video-overlay.mp4.meta ├── VideoController.cs ├── VideoController.cs.meta ├── WebAR Foundation.meta ├── WebGLTemplates.meta └── WebGLTemplates │ ├── FullScreen.meta │ └── FullScreen │ ├── index.html │ └── index.html.meta ├── Packages ├── manifest.json └── packages-lock.json └── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── MemorySettings.asset ├── NavMeshAreas.asset ├── PackageManagerSettings.asset ├── Packages └── com.unity.testtools.codecoverage │ └── Settings.json ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── SceneTemplateSettings.json ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset ├── VersionControlSettings.asset ├── XRSettings.asset └── boot.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/README.md -------------------------------------------------------------------------------- /docs/assets/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/assets/cover.png -------------------------------------------------------------------------------- /docs/assets/face-debugger/step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/assets/face-debugger/step1.png -------------------------------------------------------------------------------- /docs/assets/face-debugger/step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/assets/face-debugger/step2.png -------------------------------------------------------------------------------- /docs/assets/face-debugger/step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/assets/face-debugger/step3.png -------------------------------------------------------------------------------- /docs/assets/face-tracking-quickstart/faceMeshTrackers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/assets/face-tracking-quickstart/faceMeshTrackers.png -------------------------------------------------------------------------------- /docs/assets/flashcards/bear-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/assets/flashcards/bear-color.png -------------------------------------------------------------------------------- /docs/assets/flashcards/raccoon-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/assets/flashcards/raccoon-color.png -------------------------------------------------------------------------------- /docs/assets/image-debugger/image-debugger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/assets/image-debugger/image-debugger.png -------------------------------------------------------------------------------- /docs/assets/image-debugger/step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/assets/image-debugger/step1.png -------------------------------------------------------------------------------- /docs/assets/image-debugger/step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/assets/image-debugger/step2.png -------------------------------------------------------------------------------- /docs/assets/image-debugger/step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/assets/image-debugger/step3.png -------------------------------------------------------------------------------- /docs/assets/image-debugger/step4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/assets/image-debugger/step4.png -------------------------------------------------------------------------------- /docs/assets/image-tracking-quickstart/quad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/assets/image-tracking-quickstart/quad.png -------------------------------------------------------------------------------- /docs/assets/video-overlay/video-overlay-target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/assets/video-overlay/video-overlay-target.png -------------------------------------------------------------------------------- /docs/demo/facemesh/Build/facemesh.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/demo/facemesh/Build/facemesh.data -------------------------------------------------------------------------------- /docs/demo/facemesh/Build/facemesh.framework.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/demo/facemesh/Build/facemesh.framework.js -------------------------------------------------------------------------------- /docs/demo/facemesh/Build/facemesh.loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/demo/facemesh/Build/facemesh.loader.js -------------------------------------------------------------------------------- /docs/demo/facemesh/Build/facemesh.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/demo/facemesh/Build/facemesh.wasm -------------------------------------------------------------------------------- /docs/demo/facemesh/StreamingAssets/UnityServicesProjectConfiguration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/demo/facemesh/StreamingAssets/UnityServicesProjectConfiguration.json -------------------------------------------------------------------------------- /docs/demo/facemesh/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/demo/facemesh/index.html -------------------------------------------------------------------------------- /docs/demo/flashcards/Build/flashcards.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/demo/flashcards/Build/flashcards.data -------------------------------------------------------------------------------- /docs/demo/flashcards/Build/flashcards.framework.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/demo/flashcards/Build/flashcards.framework.js -------------------------------------------------------------------------------- /docs/demo/flashcards/Build/flashcards.loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/demo/flashcards/Build/flashcards.loader.js -------------------------------------------------------------------------------- /docs/demo/flashcards/Build/flashcards.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/demo/flashcards/Build/flashcards.wasm -------------------------------------------------------------------------------- /docs/demo/flashcards/StreamingAssets/UnityServicesProjectConfiguration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/demo/flashcards/StreamingAssets/UnityServicesProjectConfiguration.json -------------------------------------------------------------------------------- /docs/demo/flashcards/StreamingAssets/flash-cards.mind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/demo/flashcards/StreamingAssets/flash-cards.mind -------------------------------------------------------------------------------- /docs/demo/flashcards/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/demo/flashcards/index.html -------------------------------------------------------------------------------- /docs/demo/tryon/Build/tryon.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/demo/tryon/Build/tryon.data -------------------------------------------------------------------------------- /docs/demo/tryon/Build/tryon.framework.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/demo/tryon/Build/tryon.framework.js -------------------------------------------------------------------------------- /docs/demo/tryon/Build/tryon.loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/demo/tryon/Build/tryon.loader.js -------------------------------------------------------------------------------- /docs/demo/tryon/Build/tryon.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/demo/tryon/Build/tryon.wasm -------------------------------------------------------------------------------- /docs/demo/tryon/StreamingAssets/UnityServicesProjectConfiguration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/demo/tryon/StreamingAssets/UnityServicesProjectConfiguration.json -------------------------------------------------------------------------------- /docs/demo/tryon/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/demo/tryon/index.html -------------------------------------------------------------------------------- /docs/demo/video-overlay/Build/video-overlay.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/demo/video-overlay/Build/video-overlay.data -------------------------------------------------------------------------------- /docs/demo/video-overlay/Build/video-overlay.framework.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/demo/video-overlay/Build/video-overlay.framework.js -------------------------------------------------------------------------------- /docs/demo/video-overlay/Build/video-overlay.loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/demo/video-overlay/Build/video-overlay.loader.js -------------------------------------------------------------------------------- /docs/demo/video-overlay/Build/video-overlay.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/demo/video-overlay/Build/video-overlay.wasm -------------------------------------------------------------------------------- /docs/demo/video-overlay/StreamingAssets/UnityServicesProjectConfiguration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/demo/video-overlay/StreamingAssets/UnityServicesProjectConfiguration.json -------------------------------------------------------------------------------- /docs/demo/video-overlay/StreamingAssets/video-overlay-target.mind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/demo/video-overlay/StreamingAssets/video-overlay-target.mind -------------------------------------------------------------------------------- /docs/demo/video-overlay/StreamingAssets/video-overlay.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/demo/video-overlay/StreamingAssets/video-overlay.mp4 -------------------------------------------------------------------------------- /docs/demo/video-overlay/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/demo/video-overlay/index.html -------------------------------------------------------------------------------- /docs/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/examples.html -------------------------------------------------------------------------------- /docs/face-tracking-debugger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/face-tracking-debugger.html -------------------------------------------------------------------------------- /docs/face-tracking-quickstart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/face-tracking-quickstart.html -------------------------------------------------------------------------------- /docs/image-tracking-debugger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/image-tracking-debugger.html -------------------------------------------------------------------------------- /docs/image-tracking-quickstart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/image-tracking-quickstart.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/docs/style.css -------------------------------------------------------------------------------- /sample-projects/FaceMask/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FaceMask/.vscode/settings.json -------------------------------------------------------------------------------- /sample-projects/FaceMask/Assets/FaceMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FaceMask/Assets/FaceMaterial.mat -------------------------------------------------------------------------------- /sample-projects/FaceMask/Assets/FaceMaterial.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FaceMask/Assets/FaceMaterial.mat.meta -------------------------------------------------------------------------------- /sample-projects/FaceMask/Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FaceMask/Assets/Scenes.meta -------------------------------------------------------------------------------- /sample-projects/FaceMask/Assets/Scenes/SampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FaceMask/Assets/Scenes/SampleScene.unity -------------------------------------------------------------------------------- /sample-projects/FaceMask/Assets/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FaceMask/Assets/Scenes/SampleScene.unity.meta -------------------------------------------------------------------------------- /sample-projects/FaceMask/Assets/WebAR Foundation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FaceMask/Assets/WebAR Foundation.meta -------------------------------------------------------------------------------- /sample-projects/FaceMask/Assets/WebGLTemplates.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FaceMask/Assets/WebGLTemplates.meta -------------------------------------------------------------------------------- /sample-projects/FaceMask/Assets/WebGLTemplates/FullScreen.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FaceMask/Assets/WebGLTemplates/FullScreen.meta -------------------------------------------------------------------------------- /sample-projects/FaceMask/Assets/WebGLTemplates/FullScreen/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FaceMask/Assets/WebGLTemplates/FullScreen/index.html -------------------------------------------------------------------------------- /sample-projects/FaceMask/Assets/WebGLTemplates/FullScreen/index.html.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FaceMask/Assets/WebGLTemplates/FullScreen/index.html.meta -------------------------------------------------------------------------------- /sample-projects/FaceMask/Assets/faceMeshTrackers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FaceMask/Assets/faceMeshTrackers.png -------------------------------------------------------------------------------- /sample-projects/FaceMask/Assets/faceMeshTrackers.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FaceMask/Assets/faceMeshTrackers.png.meta -------------------------------------------------------------------------------- /sample-projects/FaceMask/Assets/faceMeshTrackers3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FaceMask/Assets/faceMeshTrackers3.png -------------------------------------------------------------------------------- /sample-projects/FaceMask/Assets/faceMeshTrackers3.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FaceMask/Assets/faceMeshTrackers3.png.meta -------------------------------------------------------------------------------- /sample-projects/FaceMask/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FaceMask/Packages/manifest.json -------------------------------------------------------------------------------- /sample-projects/FaceMask/Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FaceMask/Packages/packages-lock.json -------------------------------------------------------------------------------- /sample-projects/FaceMask/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FaceMask/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /sample-projects/FaceMask/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FaceMask/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /sample-projects/FaceMask/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FaceMask/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /sample-projects/FaceMask/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FaceMask/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /sample-projects/FaceMask/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FaceMask/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /sample-projects/FaceMask/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FaceMask/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /sample-projects/FaceMask/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FaceMask/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /sample-projects/FaceMask/ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FaceMask/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /sample-projects/FaceMask/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FaceMask/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /sample-projects/FaceMask/ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FaceMask/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /sample-projects/FaceMask/ProjectSettings/Packages/com.unity.testtools.codecoverage/Settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FaceMask/ProjectSettings/Packages/com.unity.testtools.codecoverage/Settings.json -------------------------------------------------------------------------------- /sample-projects/FaceMask/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FaceMask/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /sample-projects/FaceMask/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FaceMask/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /sample-projects/FaceMask/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FaceMask/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /sample-projects/FaceMask/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FaceMask/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /sample-projects/FaceMask/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FaceMask/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /sample-projects/FaceMask/ProjectSettings/SceneTemplateSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FaceMask/ProjectSettings/SceneTemplateSettings.json -------------------------------------------------------------------------------- /sample-projects/FaceMask/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FaceMask/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /sample-projects/FaceMask/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FaceMask/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /sample-projects/FaceMask/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FaceMask/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /sample-projects/FaceMask/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FaceMask/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /sample-projects/FaceMask/ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FaceMask/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /sample-projects/FaceMask/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FaceMask/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /sample-projects/FaceMask/ProjectSettings/boot.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-projects/FlashCards/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/.gitignore -------------------------------------------------------------------------------- /sample-projects/FlashCards/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/.vscode/settings.json -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/3DAssets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/3DAssets.meta -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/3DAssets/Bear.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/3DAssets/Bear.meta -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/3DAssets/Bear/Bear Animator Controller.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/3DAssets/Bear/Bear Animator Controller.controller -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/3DAssets/Bear/Bear Animator Controller.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/3DAssets/Bear/Bear Animator Controller.controller.meta -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/3DAssets/Bear/Cello_paint.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/3DAssets/Bear/Cello_paint.mat -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/3DAssets/Bear/Cello_paint.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/3DAssets/Bear/Cello_paint.mat.meta -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/3DAssets/Bear/Cello_paint_baseColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/3DAssets/Bear/Cello_paint_baseColor.png -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/3DAssets/Bear/Cello_paint_baseColor.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/3DAssets/Bear/Cello_paint_baseColor.png.meta -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/3DAssets/Bear/bear-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/3DAssets/Bear/bear-color.png -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/3DAssets/Bear/bear-color.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/3DAssets/Bear/bear-color.png.meta -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/3DAssets/Bear/bear.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/3DAssets/Bear/bear.fbx -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/3DAssets/Bear/bear.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/3DAssets/Bear/bear.fbx.meta -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/3DAssets/Bear/bear_paint 1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/3DAssets/Bear/bear_paint 1.mat -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/3DAssets/Bear/bear_paint 1.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/3DAssets/Bear/bear_paint 1.mat.meta -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/3DAssets/Bear/bear_paint.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/3DAssets/Bear/bear_paint.mat -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/3DAssets/Bear/bear_paint.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/3DAssets/Bear/bear_paint.mat.meta -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/3DAssets/Raccoon.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/3DAssets/Raccoon.meta -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/3DAssets/Raccoon/Raccoon Animator Controller.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/3DAssets/Raccoon/Raccoon Animator Controller.controller -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/3DAssets/Raccoon/Raccoon Animator Controller.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/3DAssets/Raccoon/Raccoon Animator Controller.controller.meta -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/3DAssets/Raccoon/drum_defaultCol.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/3DAssets/Raccoon/drum_defaultCol.mat -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/3DAssets/Raccoon/drum_defaultCol.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/3DAssets/Raccoon/drum_defaultCol.mat.meta -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/3DAssets/Raccoon/drum_defaultCol_baseColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/3DAssets/Raccoon/drum_defaultCol_baseColor.png -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/3DAssets/Raccoon/drum_defaultCol_baseColor.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/3DAssets/Raccoon/drum_defaultCol_baseColor.png.meta -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/3DAssets/Raccoon/drum_paint.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/3DAssets/Raccoon/drum_paint.mat -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/3DAssets/Raccoon/drum_paint.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/3DAssets/Raccoon/drum_paint.mat.meta -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/3DAssets/Raccoon/drum_paint_baseColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/3DAssets/Raccoon/drum_paint_baseColor.png -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/3DAssets/Raccoon/drum_paint_baseColor.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/3DAssets/Raccoon/drum_paint_baseColor.png.meta -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/3DAssets/Raccoon/raccoon.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/3DAssets/Raccoon/raccoon.fbx -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/3DAssets/Raccoon/raccoon.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/3DAssets/Raccoon/raccoon.fbx.meta -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/3DAssets/Raccoon/raccoon_paint.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/3DAssets/Raccoon/raccoon_paint.mat -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/3DAssets/Raccoon/raccoon_paint.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/3DAssets/Raccoon/raccoon_paint.mat.meta -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/3DAssets/Raccoon/raccoon_paint_baseColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/3DAssets/Raccoon/raccoon_paint_baseColor.png -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/3DAssets/Raccoon/raccoon_paint_baseColor.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/3DAssets/Raccoon/raccoon_paint_baseColor.png.meta -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/3DAssets/Raccoon/stick.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/3DAssets/Raccoon/stick.mat -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/3DAssets/Raccoon/stick.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/3DAssets/Raccoon/stick.mat.meta -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/Scenes.meta -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/Scenes/SampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/Scenes/SampleScene.unity -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/Scenes/SampleScene.unity.meta -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/StreamingAssets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/StreamingAssets.meta -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/StreamingAssets/flash-cards.mind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/StreamingAssets/flash-cards.mind -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/StreamingAssets/flash-cards.mind.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/StreamingAssets/flash-cards.mind.meta -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/WebAR Foundation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/WebAR Foundation.meta -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/WebGLTemplates.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/WebGLTemplates.meta -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/WebGLTemplates/FullScreen.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/WebGLTemplates/FullScreen.meta -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/WebGLTemplates/FullScreen/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/WebGLTemplates/FullScreen/index.html -------------------------------------------------------------------------------- /sample-projects/FlashCards/Assets/WebGLTemplates/FullScreen/index.html.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Assets/WebGLTemplates/FullScreen/index.html.meta -------------------------------------------------------------------------------- /sample-projects/FlashCards/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Packages/manifest.json -------------------------------------------------------------------------------- /sample-projects/FlashCards/Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/Packages/packages-lock.json -------------------------------------------------------------------------------- /sample-projects/FlashCards/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /sample-projects/FlashCards/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /sample-projects/FlashCards/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /sample-projects/FlashCards/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /sample-projects/FlashCards/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /sample-projects/FlashCards/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /sample-projects/FlashCards/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /sample-projects/FlashCards/ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /sample-projects/FlashCards/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /sample-projects/FlashCards/ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /sample-projects/FlashCards/ProjectSettings/Packages/com.unity.testtools.codecoverage/Settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/ProjectSettings/Packages/com.unity.testtools.codecoverage/Settings.json -------------------------------------------------------------------------------- /sample-projects/FlashCards/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /sample-projects/FlashCards/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /sample-projects/FlashCards/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /sample-projects/FlashCards/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /sample-projects/FlashCards/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /sample-projects/FlashCards/ProjectSettings/SceneTemplateSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/ProjectSettings/SceneTemplateSettings.json -------------------------------------------------------------------------------- /sample-projects/FlashCards/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /sample-projects/FlashCards/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /sample-projects/FlashCards/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /sample-projects/FlashCards/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /sample-projects/FlashCards/ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /sample-projects/FlashCards/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/FlashCards/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /sample-projects/FlashCards/ProjectSettings/boot.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-projects/TryOn/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/.vscode/settings.json -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/Glasses.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/Glasses.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/Glasses/Glass Animator Controller.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/Glasses/Glass Animator Controller.controller -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/Glasses/Glass Animator Controller.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/Glasses/Glass Animator Controller.controller.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/Glasses/Spoilervision Glasses.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/Glasses/Spoilervision Glasses.fbx -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/Glasses/Spoilervision Glasses.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/Glasses/Spoilervision Glasses.fbx.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/Glasses/Spoilervision.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/Glasses/Spoilervision.mat -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/Glasses/Spoilervision.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/Glasses/Spoilervision.mat.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/Glasses/glasses-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/Glasses/glasses-thumbnail.png -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/Glasses/glasses-thumbnail.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/Glasses/glasses-thumbnail.png.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/Glasses/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/Glasses/license.txt -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/Glasses/license.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/Glasses/license.txt.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/Glasses/textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/Glasses/textures.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/Glasses/textures/Spoilervision_AO.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/Glasses/textures/Spoilervision_AO.jpg -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/Glasses/textures/Spoilervision_AO.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/Glasses/textures/Spoilervision_AO.jpg.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/Glasses/textures/Spoilervision_albedo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/Glasses/textures/Spoilervision_albedo.jpg -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/Glasses/textures/Spoilervision_albedo.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/Glasses/textures/Spoilervision_albedo.jpg.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/Glasses/textures/Spoilervision_metallic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/Glasses/textures/Spoilervision_metallic.jpg -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/Glasses/textures/Spoilervision_metallic.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/Glasses/textures/Spoilervision_metallic.jpg.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/Glasses/textures/Spoilervision_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/Glasses/textures/Spoilervision_normal.png -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/Glasses/textures/Spoilervision_normal.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/Glasses/textures/Spoilervision_normal.png.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/Glasses/textures/Spoilervision_roughness.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/Glasses/textures/Spoilervision_roughness.jpg -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/Glasses/textures/Spoilervision_roughness.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/Glasses/textures/Spoilervision_roughness.jpg.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/Hat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/Hat.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/Hat/HAT2.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/Hat/HAT2.fbx -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/Hat/HAT2.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/Hat/HAT2.fbx.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/Hat/hat-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/Hat/hat-thumbnail.png -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/Hat/hat-thumbnail.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/Hat/hat-thumbnail.png.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/Hat/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/Hat/license.txt -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/Hat/license.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/Hat/license.txt.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/Mustache.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/Mustache.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/Mustache/crayfishdiffuse.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/Mustache/crayfishdiffuse.mat -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/Mustache/crayfishdiffuse.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/Mustache/crayfishdiffuse.mat.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/Mustache/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/Mustache/license.txt -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/Mustache/license.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/Mustache/license.txt.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/Mustache/mustache-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/Mustache/mustache-thumbnail.png -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/Mustache/mustache-thumbnail.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/Mustache/mustache-thumbnail.png.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/Mustache/mustache_from_poly_by_google.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/Mustache/mustache_from_poly_by_google.fbx -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/Mustache/mustache_from_poly_by_google.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/Mustache/mustache_from_poly_by_google.fbx.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/Scenes.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/Scenes/SampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/Scenes/SampleScene.unity -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/Scenes/SampleScene.unity.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Documentation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Documentation.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Fonts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Fonts.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Fonts/LiberationSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Fonts/LiberationSans.ttf -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Fonts/LiberationSans.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Fonts/LiberationSans.ttf.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Resources.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Resources/Fonts & Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Resources/Fonts & Materials.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt: -------------------------------------------------------------------------------- 1 | ([{〔〈《「『【〘〖〝‘“⦅«$—…‥〳〴〵\[({£¥"々〇$¥₩ # -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Resources/Sprite Assets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Resources/Sprite Assets.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Resources/Style Sheets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Resources/Style Sheets.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Resources/TMP Settings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Resources/TMP Settings.asset -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Resources/TMP Settings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Resources/TMP Settings.asset.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Shaders.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_SDF.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_SDF.shader -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_SDF.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_SDF.shader.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMPro.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMPro.cginc -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMPro.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMPro.cginc.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Sprites.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Sprites.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Sprites/EmojiOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Sprites/EmojiOne.json -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Sprites/EmojiOne.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Sprites/EmojiOne.json.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Sprites/EmojiOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Sprites/EmojiOne.png -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TextMesh Pro/Sprites/EmojiOne.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TextMesh Pro/Sprites/EmojiOne.png.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TryOnController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TryOnController.cs -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/TryOnController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/TryOnController.cs.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/WebAR Foundation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/WebAR Foundation.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/WebGLTemplates.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/WebGLTemplates.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/WebGLTemplates/FullScreen.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/WebGLTemplates/FullScreen.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/WebGLTemplates/FullScreen/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/WebGLTemplates/FullScreen/index.html -------------------------------------------------------------------------------- /sample-projects/TryOn/Assets/WebGLTemplates/FullScreen/index.html.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Assets/WebGLTemplates/FullScreen/index.html.meta -------------------------------------------------------------------------------- /sample-projects/TryOn/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Packages/manifest.json -------------------------------------------------------------------------------- /sample-projects/TryOn/Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/Packages/packages-lock.json -------------------------------------------------------------------------------- /sample-projects/TryOn/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /sample-projects/TryOn/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /sample-projects/TryOn/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /sample-projects/TryOn/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /sample-projects/TryOn/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /sample-projects/TryOn/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /sample-projects/TryOn/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /sample-projects/TryOn/ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /sample-projects/TryOn/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /sample-projects/TryOn/ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /sample-projects/TryOn/ProjectSettings/Packages/com.unity.testtools.codecoverage/Settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/ProjectSettings/Packages/com.unity.testtools.codecoverage/Settings.json -------------------------------------------------------------------------------- /sample-projects/TryOn/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /sample-projects/TryOn/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /sample-projects/TryOn/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /sample-projects/TryOn/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /sample-projects/TryOn/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /sample-projects/TryOn/ProjectSettings/SceneTemplateSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/ProjectSettings/SceneTemplateSettings.json -------------------------------------------------------------------------------- /sample-projects/TryOn/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /sample-projects/TryOn/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /sample-projects/TryOn/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /sample-projects/TryOn/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /sample-projects/TryOn/ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /sample-projects/TryOn/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/TryOn/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /sample-projects/TryOn/ProjectSettings/boot.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/.vscode/settings.json -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/Assets/Scenes.meta -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/Assets/Scenes/SampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/Assets/Scenes/SampleScene.unity -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/Assets/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/Assets/Scenes/SampleScene.unity.meta -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/Assets/Scenes/VIdeoRender Texture.renderTexture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/Assets/Scenes/VIdeoRender Texture.renderTexture -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/Assets/Scenes/VIdeoRender Texture.renderTexture.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/Assets/Scenes/VIdeoRender Texture.renderTexture.meta -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/Assets/Scenes/VideoMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/Assets/Scenes/VideoMaterial.mat -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/Assets/Scenes/VideoMaterial.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/Assets/Scenes/VideoMaterial.mat.meta -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/Assets/Scenes/VideoPlaceholderMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/Assets/Scenes/VideoPlaceholderMaterial.mat -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/Assets/Scenes/VideoPlaceholderMaterial.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/Assets/Scenes/VideoPlaceholderMaterial.mat.meta -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/Assets/Scenes/video-overlay-target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/Assets/Scenes/video-overlay-target.png -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/Assets/Scenes/video-overlay-target.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/Assets/Scenes/video-overlay-target.png.meta -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/Assets/StreamingAssets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/Assets/StreamingAssets.meta -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/Assets/StreamingAssets/video-overlay-target.mind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/Assets/StreamingAssets/video-overlay-target.mind -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/Assets/StreamingAssets/video-overlay-target.mind.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/Assets/StreamingAssets/video-overlay-target.mind.meta -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/Assets/StreamingAssets/video-overlay.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/Assets/StreamingAssets/video-overlay.mp4 -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/Assets/StreamingAssets/video-overlay.mp4.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/Assets/StreamingAssets/video-overlay.mp4.meta -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/Assets/VideoController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/Assets/VideoController.cs -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/Assets/VideoController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/Assets/VideoController.cs.meta -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/Assets/WebAR Foundation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/Assets/WebAR Foundation.meta -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/Assets/WebGLTemplates.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/Assets/WebGLTemplates.meta -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/Assets/WebGLTemplates/FullScreen.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/Assets/WebGLTemplates/FullScreen.meta -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/Assets/WebGLTemplates/FullScreen/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/Assets/WebGLTemplates/FullScreen/index.html -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/Assets/WebGLTemplates/FullScreen/index.html.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/Assets/WebGLTemplates/FullScreen/index.html.meta -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/Packages/manifest.json -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/Packages/packages-lock.json -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/ProjectSettings/Packages/com.unity.testtools.codecoverage/Settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/ProjectSettings/Packages/com.unity.testtools.codecoverage/Settings.json -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/ProjectSettings/SceneTemplateSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/ProjectSettings/SceneTemplateSettings.json -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiukim/unity-webar-foundation/HEAD/sample-projects/VideoOverlay/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /sample-projects/VideoOverlay/ProjectSettings/boot.config: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------