├── .gitattributes ├── .gitignore ├── .vsconfig ├── Assets ├── Scenes.meta ├── Scenes │ ├── TestScene.unity │ └── TestScene.unity.meta ├── Settings.meta ├── Settings │ ├── BakeryProjectSettings.asset │ └── BakeryProjectSettings.asset.meta └── mahu │ ├── axe-throwing.meta │ └── axe-throwing │ ├── Axe Throwing Game.prefab │ ├── Axe Throwing Game.prefab.meta │ ├── LICENSE │ ├── LICENSE.meta │ ├── debug.meta │ ├── debug │ ├── DebugAxeIndicator.prefab │ ├── DebugAxeIndicator.prefab.meta │ ├── debugblue.mat │ ├── debugblue.mat.meta │ ├── debuggreen.mat │ ├── debuggreen.mat.meta │ ├── debugred.mat │ ├── debugred.mat.meta │ ├── debugwhite.mat │ └── debugwhite.mat.meta │ ├── helptext.meta │ ├── helptext │ ├── AnimatedGameText.cs │ ├── AnimatedGameText.cs.meta │ ├── AxeHelpText.asset │ ├── AxeHelpText.asset.meta │ ├── TextContainer.controller │ ├── TextContainer.controller.meta │ ├── off.anim │ ├── off.anim.meta │ ├── play.anim │ └── play.anim.meta │ ├── models.meta │ ├── models │ ├── FloorMat.asset │ ├── FloorMat.asset.meta │ ├── FloorMat.prefab │ ├── FloorMat.prefab.meta │ ├── ThrownAxe.blend │ ├── ThrownAxe.blend.meta │ ├── ThrownAxe.blend1 │ ├── ThrownAxe.blend1.meta │ ├── ThrownAxe.fbx │ ├── ThrownAxe.fbx.meta │ ├── WoodBoard.mtl │ ├── WoodBoard.mtl.meta │ ├── WoodBoardTarget.blend │ ├── WoodBoardTarget.blend.meta │ ├── WoodBoardTarget.blend1 │ ├── WoodBoardTarget.blend1.meta │ ├── WoodBoardTarget.fbx │ ├── WoodBoardTarget.fbx.meta │ ├── WoodBoardTargetFaceOnly.blend │ ├── WoodBoardTargetFaceOnly.blend.meta │ ├── WoodBoardTargetFaceOnly.blend1 │ ├── WoodBoardTargetFaceOnly.blend1.meta │ ├── WoodBoardTargetFaceOnly.fbx │ └── WoodBoardTargetFaceOnly.fbx.meta │ ├── resources.meta │ ├── resources │ ├── BebasNeue-Regular SDF.asset │ ├── BebasNeue-Regular SDF.asset.meta │ ├── BebasNeue-Regular.ttf │ ├── BebasNeue-Regular.ttf.meta │ ├── Capture it SDF.asset │ ├── Capture it SDF.asset.meta │ ├── Capture it.ttf │ ├── Capture it.ttf.meta │ ├── GripRimlight.mat │ ├── GripRimlight.mat.meta │ ├── GroundRubberPublic.mat │ ├── GroundRubberPublic.mat.meta │ ├── PaintMultiplyTransparent.shader │ ├── PaintMultiplyTransparent.shader.meta │ ├── PaintUnlitTransparent 1.shader │ ├── PaintUnlitTransparent 1.shader.meta │ ├── Ringlighttransparent.shader │ ├── Ringlighttransparent.shader.meta │ ├── ThrowingAxe.prefab │ ├── ThrowingAxe.prefab.meta │ ├── UIAnimatorController.controller │ ├── UIAnimatorController.controller.meta │ ├── axemetal.physicMaterial │ ├── axemetal.physicMaterial.meta │ ├── uihide.anim │ ├── uihide.anim.meta │ ├── uishow.anim │ └── uishow.anim.meta │ ├── scripts.meta │ ├── scripts │ ├── Axe Throwing Game Udon C# Program Asset.asset │ ├── Axe Throwing Game Udon C# Program Asset.asset.meta │ ├── AxeSpawner.asset │ ├── AxeSpawner.asset.meta │ ├── AxeSpawner.cs │ ├── AxeSpawner.cs.meta │ ├── AxeThrowingDebugLog.asset │ ├── AxeThrowingDebugLog.asset.meta │ ├── AxeThrowingDebugLog.cs │ ├── AxeThrowingDebugLog.cs.meta │ ├── AxeThrowingGame.cs │ ├── AxeThrowingGame.cs.meta │ ├── AxeThrowingGameMode.cs │ ├── AxeThrowingGameMode.cs.meta │ ├── BeerAxeGameMode.asset │ ├── BeerAxeGameMode.asset.meta │ ├── BeerAxeGameMode.cs │ ├── BeerAxeGameMode.cs.meta │ ├── BeerAxeSingleGameMode.asset │ ├── BeerAxeSingleGameMode.asset.meta │ ├── BeerAxeSingleGameMode.cs │ ├── BeerAxeSingleGameMode.cs.meta │ ├── NoGoZone Udon C# Program Asset.asset │ ├── NoGoZone Udon C# Program Asset.asset.meta │ ├── NoGoZone.cs │ ├── NoGoZone.cs.meta │ ├── PlayerEnterExitTrigger.asset │ ├── PlayerEnterExitTrigger.asset.meta │ ├── PlayerPresenceTrigger.cs │ ├── PlayerPresenceTrigger.cs.meta │ ├── ResetButton.asset │ ├── ResetButton.asset.meta │ ├── ResetButton.cs │ ├── ResetButton.cs.meta │ ├── ScoreCallback.cs │ ├── ScoreCallback.cs.meta │ ├── ThrowingAxe Udon C# Program Asset.asset │ ├── ThrowingAxe Udon C# Program Asset.asset.meta │ ├── ThrowingAxe.cs │ ├── ThrowingAxe.cs.meta │ ├── WatlGameMode.asset │ ├── WatlGameMode.asset.meta │ ├── WatlGameMode.cs │ └── WatlGameMode.cs.meta │ ├── sfx.meta │ ├── sfx │ ├── WoodChop.ogg │ ├── WoodChop.ogg.meta │ ├── clang.mp3 │ ├── clang.mp3.meta │ ├── failsound.mp3 │ └── failsound.mp3.meta │ ├── textures.meta │ └── textures │ ├── Line.asset │ ├── Line.asset.meta │ ├── Line.prefab │ ├── Line.prefab.meta │ ├── TargetBoardWATL.mat │ ├── TargetBoardWATL.mat.meta │ ├── ThrownAxe.mat │ ├── ThrownAxe.mat.meta │ ├── ThrownAxe_AxeMaterial_AlbedoTransparency.png │ ├── ThrownAxe_AxeMaterial_AlbedoTransparency.png.meta │ ├── ThrownAxe_AxeMaterial_AlbedoTransparencyWATL.png │ ├── ThrownAxe_AxeMaterial_AlbedoTransparencyWATL.png.meta │ ├── ThrownAxe_AxeMaterial_MetallicSmoothness.png │ ├── ThrownAxe_AxeMaterial_MetallicSmoothness.png.meta │ ├── ThrownAxe_AxeMaterial_Normal.png │ ├── ThrownAxe_AxeMaterial_Normal.png.meta │ ├── WoodBoardTarget_WoodBoardTarget_AlbedoTransparency.png │ ├── WoodBoardTarget_WoodBoardTarget_AlbedoTransparency.png.meta │ ├── WoodBoardTarget_WoodBoardTarget_MetallicSmoothness.png │ ├── WoodBoardTarget_WoodBoardTarget_MetallicSmoothness.png.meta │ ├── WoodBoardTarget_WoodBoardTarget_Normal.png │ ├── WoodBoardTarget_WoodBoardTarget_Normal.png.meta │ ├── beeraxe.meta │ ├── beeraxe │ ├── beeraxecup.mat │ ├── beeraxecup.mat.meta │ ├── beeraxecup.psd │ ├── beeraxecup.psd.meta │ ├── beeraxepaint.mat │ ├── beeraxepaint.mat.meta │ ├── beeraxepaint.psd │ ├── beeraxepaint.psd.meta │ ├── beeraxepaint2.psd │ ├── beeraxepaint2.psd.meta │ ├── beeraxepaint3.psd │ ├── beeraxepaint3.psd.meta │ ├── beeraxepainthoriz.mat │ ├── beeraxepainthoriz.mat.meta │ ├── beeraxesingle.mat │ └── beeraxesingle.mat.meta │ ├── linepaint.mat │ ├── linepaint.mat.meta │ ├── linepaint.psd │ ├── linepaint.psd.meta │ ├── rubbermatfree.png │ ├── rubbermatfree.png.meta │ ├── targetpaint.mat │ ├── targetpaint.mat.meta │ ├── targetpaint.psd │ ├── targetpaint.psd.meta │ ├── thrownaxe.spp.meta │ └── woodboard.spp.meta ├── LICENSE ├── Packages ├── .gitignore ├── com.vrchat.core.vpm-resolver │ ├── Editor.meta │ ├── Editor │ │ ├── Dependencies.meta │ │ ├── Dependencies │ │ │ ├── SemanticVersioning.License.txt │ │ │ ├── SemanticVersioning.License.txt.meta │ │ │ ├── SemanticVersioning.dll │ │ │ ├── SemanticVersioning.dll.meta │ │ │ ├── Serilog.License.txt │ │ │ ├── Serilog.License.txt.meta │ │ │ ├── Serilog.Sinks.File.dll │ │ │ ├── Serilog.Sinks.File.dll.meta │ │ │ ├── Serilog.Sinks.File.txt │ │ │ ├── Serilog.Sinks.File.txt.meta │ │ │ ├── Serilog.Sinks.Unity3D.License.md │ │ │ ├── Serilog.Sinks.Unity3D.License.md.meta │ │ │ ├── Serilog.Sinks.Unity3D.dll │ │ │ ├── Serilog.Sinks.Unity3D.dll.meta │ │ │ ├── Serilog.dll │ │ │ ├── Serilog.dll.meta │ │ │ ├── YamlDotNet.License.txt │ │ │ ├── YamlDotNet.License.txt.meta │ │ │ ├── YamlDotNet.dll │ │ │ ├── YamlDotNet.dll.meta │ │ │ ├── vpm-core-lib.dll │ │ │ └── vpm-core-lib.dll.meta │ │ ├── PackageMaker.meta │ │ ├── PackageMaker │ │ │ ├── PackageMakerWindow.cs │ │ │ ├── PackageMakerWindow.cs.meta │ │ │ ├── PackageMakerWindowData.cs │ │ │ └── PackageMakerWindowData.cs.meta │ │ ├── Resolver.meta │ │ ├── Resolver │ │ │ ├── Resolver.cs │ │ │ ├── Resolver.cs.meta │ │ │ ├── ResolverWindow.cs │ │ │ └── ResolverWindow.cs.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── PackageMakerWindowStyle.uss │ │ │ ├── PackageMakerWindowStyle.uss.meta │ │ │ ├── ResolverWindowStyle.uss │ │ │ └── ResolverWindowStyle.uss.meta │ │ ├── com.vrchat.core.vpm-resolver.Editor.asmdef │ │ └── com.vrchat.core.vpm-resolver.Editor.asmdef.meta │ ├── License.md │ ├── License.md.meta │ ├── package.json │ └── package.json.meta ├── manifest.json ├── packages-lock.json └── vpm-manifest.json ├── ProjectSettings ├── AudioManager.asset ├── BurstAotSettings_Android.json ├── BurstAotSettings_StandaloneWindows.json ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── PackageManagerSettings.asset ├── Packages │ ├── com.unity.probuilder │ │ └── Settings.json │ ├── com.unity.progrids │ │ └── Settings.json │ └── com.vrchat.base │ │ └── settings.json ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset └── XRSettings.asset ├── README.md └── bakery_times.log /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/.gitignore -------------------------------------------------------------------------------- /.vsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/.vsconfig -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/Scenes.meta -------------------------------------------------------------------------------- /Assets/Scenes/TestScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/Scenes/TestScene.unity -------------------------------------------------------------------------------- /Assets/Scenes/TestScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/Scenes/TestScene.unity.meta -------------------------------------------------------------------------------- /Assets/Settings.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/Settings.meta -------------------------------------------------------------------------------- /Assets/Settings/BakeryProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/Settings/BakeryProjectSettings.asset -------------------------------------------------------------------------------- /Assets/Settings/BakeryProjectSettings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/Settings/BakeryProjectSettings.asset.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/Axe Throwing Game.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/Axe Throwing Game.prefab -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/Axe Throwing Game.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/Axe Throwing Game.prefab.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/LICENSE -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/LICENSE.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/LICENSE.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/debug.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/debug.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/debug/DebugAxeIndicator.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/debug/DebugAxeIndicator.prefab -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/debug/DebugAxeIndicator.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/debug/DebugAxeIndicator.prefab.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/debug/debugblue.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/debug/debugblue.mat -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/debug/debugblue.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/debug/debugblue.mat.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/debug/debuggreen.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/debug/debuggreen.mat -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/debug/debuggreen.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/debug/debuggreen.mat.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/debug/debugred.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/debug/debugred.mat -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/debug/debugred.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/debug/debugred.mat.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/debug/debugwhite.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/debug/debugwhite.mat -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/debug/debugwhite.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/debug/debugwhite.mat.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/helptext.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/helptext.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/helptext/AnimatedGameText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/helptext/AnimatedGameText.cs -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/helptext/AnimatedGameText.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/helptext/AnimatedGameText.cs.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/helptext/AxeHelpText.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/helptext/AxeHelpText.asset -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/helptext/AxeHelpText.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/helptext/AxeHelpText.asset.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/helptext/TextContainer.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/helptext/TextContainer.controller -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/helptext/TextContainer.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/helptext/TextContainer.controller.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/helptext/off.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/helptext/off.anim -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/helptext/off.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/helptext/off.anim.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/helptext/play.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/helptext/play.anim -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/helptext/play.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/helptext/play.anim.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/models.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/models.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/models/FloorMat.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/models/FloorMat.asset -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/models/FloorMat.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/models/FloorMat.asset.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/models/FloorMat.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/models/FloorMat.prefab -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/models/FloorMat.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/models/FloorMat.prefab.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/models/ThrownAxe.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/models/ThrownAxe.blend -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/models/ThrownAxe.blend.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/models/ThrownAxe.blend.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/models/ThrownAxe.blend1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/models/ThrownAxe.blend1 -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/models/ThrownAxe.blend1.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/models/ThrownAxe.blend1.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/models/ThrownAxe.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/models/ThrownAxe.fbx -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/models/ThrownAxe.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/models/ThrownAxe.fbx.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/models/WoodBoard.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/models/WoodBoard.mtl -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/models/WoodBoard.mtl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/models/WoodBoard.mtl.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/models/WoodBoardTarget.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/models/WoodBoardTarget.blend -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/models/WoodBoardTarget.blend.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/models/WoodBoardTarget.blend.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/models/WoodBoardTarget.blend1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/models/WoodBoardTarget.blend1 -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/models/WoodBoardTarget.blend1.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/models/WoodBoardTarget.blend1.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/models/WoodBoardTarget.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/models/WoodBoardTarget.fbx -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/models/WoodBoardTarget.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/models/WoodBoardTarget.fbx.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/models/WoodBoardTargetFaceOnly.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/models/WoodBoardTargetFaceOnly.blend -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/models/WoodBoardTargetFaceOnly.blend.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/models/WoodBoardTargetFaceOnly.blend.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/models/WoodBoardTargetFaceOnly.blend1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/models/WoodBoardTargetFaceOnly.blend1 -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/models/WoodBoardTargetFaceOnly.blend1.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/models/WoodBoardTargetFaceOnly.blend1.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/models/WoodBoardTargetFaceOnly.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/models/WoodBoardTargetFaceOnly.fbx -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/models/WoodBoardTargetFaceOnly.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/models/WoodBoardTargetFaceOnly.fbx.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/resources.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/resources/BebasNeue-Regular SDF.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/resources/BebasNeue-Regular SDF.asset -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/resources/BebasNeue-Regular SDF.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/resources/BebasNeue-Regular SDF.asset.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/resources/BebasNeue-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/resources/BebasNeue-Regular.ttf -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/resources/BebasNeue-Regular.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/resources/BebasNeue-Regular.ttf.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/resources/Capture it SDF.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/resources/Capture it SDF.asset -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/resources/Capture it SDF.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/resources/Capture it SDF.asset.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/resources/Capture it.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/resources/Capture it.ttf -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/resources/Capture it.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/resources/Capture it.ttf.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/resources/GripRimlight.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/resources/GripRimlight.mat -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/resources/GripRimlight.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/resources/GripRimlight.mat.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/resources/GroundRubberPublic.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/resources/GroundRubberPublic.mat -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/resources/GroundRubberPublic.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/resources/GroundRubberPublic.mat.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/resources/PaintMultiplyTransparent.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/resources/PaintMultiplyTransparent.shader -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/resources/PaintMultiplyTransparent.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/resources/PaintMultiplyTransparent.shader.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/resources/PaintUnlitTransparent 1.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/resources/PaintUnlitTransparent 1.shader -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/resources/PaintUnlitTransparent 1.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/resources/PaintUnlitTransparent 1.shader.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/resources/Ringlighttransparent.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/resources/Ringlighttransparent.shader -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/resources/Ringlighttransparent.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/resources/Ringlighttransparent.shader.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/resources/ThrowingAxe.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/resources/ThrowingAxe.prefab -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/resources/ThrowingAxe.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/resources/ThrowingAxe.prefab.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/resources/UIAnimatorController.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/resources/UIAnimatorController.controller -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/resources/UIAnimatorController.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/resources/UIAnimatorController.controller.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/resources/axemetal.physicMaterial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/resources/axemetal.physicMaterial -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/resources/axemetal.physicMaterial.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/resources/axemetal.physicMaterial.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/resources/uihide.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/resources/uihide.anim -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/resources/uihide.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/resources/uihide.anim.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/resources/uishow.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/resources/uishow.anim -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/resources/uishow.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/resources/uishow.anim.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/scripts.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/scripts/Axe Throwing Game Udon C# Program Asset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/scripts/Axe Throwing Game Udon C# Program Asset.asset -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/scripts/Axe Throwing Game Udon C# Program Asset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/scripts/Axe Throwing Game Udon C# Program Asset.asset.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/scripts/AxeSpawner.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/scripts/AxeSpawner.asset -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/scripts/AxeSpawner.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/scripts/AxeSpawner.asset.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/scripts/AxeSpawner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/scripts/AxeSpawner.cs -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/scripts/AxeSpawner.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/scripts/AxeSpawner.cs.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/scripts/AxeThrowingDebugLog.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/scripts/AxeThrowingDebugLog.asset -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/scripts/AxeThrowingDebugLog.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/scripts/AxeThrowingDebugLog.asset.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/scripts/AxeThrowingDebugLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/scripts/AxeThrowingDebugLog.cs -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/scripts/AxeThrowingDebugLog.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/scripts/AxeThrowingDebugLog.cs.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/scripts/AxeThrowingGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/scripts/AxeThrowingGame.cs -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/scripts/AxeThrowingGame.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/scripts/AxeThrowingGame.cs.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/scripts/AxeThrowingGameMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/scripts/AxeThrowingGameMode.cs -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/scripts/AxeThrowingGameMode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/scripts/AxeThrowingGameMode.cs.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/scripts/BeerAxeGameMode.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/scripts/BeerAxeGameMode.asset -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/scripts/BeerAxeGameMode.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/scripts/BeerAxeGameMode.asset.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/scripts/BeerAxeGameMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/scripts/BeerAxeGameMode.cs -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/scripts/BeerAxeGameMode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/scripts/BeerAxeGameMode.cs.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/scripts/BeerAxeSingleGameMode.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/scripts/BeerAxeSingleGameMode.asset -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/scripts/BeerAxeSingleGameMode.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/scripts/BeerAxeSingleGameMode.asset.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/scripts/BeerAxeSingleGameMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/scripts/BeerAxeSingleGameMode.cs -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/scripts/BeerAxeSingleGameMode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/scripts/BeerAxeSingleGameMode.cs.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/scripts/NoGoZone Udon C# Program Asset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/scripts/NoGoZone Udon C# Program Asset.asset -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/scripts/NoGoZone Udon C# Program Asset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/scripts/NoGoZone Udon C# Program Asset.asset.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/scripts/NoGoZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/scripts/NoGoZone.cs -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/scripts/NoGoZone.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/scripts/NoGoZone.cs.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/scripts/PlayerEnterExitTrigger.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/scripts/PlayerEnterExitTrigger.asset -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/scripts/PlayerEnterExitTrigger.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/scripts/PlayerEnterExitTrigger.asset.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/scripts/PlayerPresenceTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/scripts/PlayerPresenceTrigger.cs -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/scripts/PlayerPresenceTrigger.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/scripts/PlayerPresenceTrigger.cs.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/scripts/ResetButton.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/scripts/ResetButton.asset -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/scripts/ResetButton.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/scripts/ResetButton.asset.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/scripts/ResetButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/scripts/ResetButton.cs -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/scripts/ResetButton.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/scripts/ResetButton.cs.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/scripts/ScoreCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/scripts/ScoreCallback.cs -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/scripts/ScoreCallback.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/scripts/ScoreCallback.cs.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/scripts/ThrowingAxe Udon C# Program Asset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/scripts/ThrowingAxe Udon C# Program Asset.asset -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/scripts/ThrowingAxe Udon C# Program Asset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/scripts/ThrowingAxe Udon C# Program Asset.asset.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/scripts/ThrowingAxe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/scripts/ThrowingAxe.cs -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/scripts/ThrowingAxe.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/scripts/ThrowingAxe.cs.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/scripts/WatlGameMode.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/scripts/WatlGameMode.asset -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/scripts/WatlGameMode.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/scripts/WatlGameMode.asset.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/scripts/WatlGameMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/scripts/WatlGameMode.cs -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/scripts/WatlGameMode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/scripts/WatlGameMode.cs.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/sfx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/sfx.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/sfx/WoodChop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/sfx/WoodChop.ogg -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/sfx/WoodChop.ogg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/sfx/WoodChop.ogg.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/sfx/clang.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/sfx/clang.mp3 -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/sfx/clang.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/sfx/clang.mp3.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/sfx/failsound.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/sfx/failsound.mp3 -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/sfx/failsound.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/sfx/failsound.mp3.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/Line.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/Line.asset -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/Line.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/Line.asset.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/Line.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/Line.prefab -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/Line.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/Line.prefab.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/TargetBoardWATL.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/TargetBoardWATL.mat -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/TargetBoardWATL.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/TargetBoardWATL.mat.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/ThrownAxe.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/ThrownAxe.mat -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/ThrownAxe.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/ThrownAxe.mat.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/ThrownAxe_AxeMaterial_AlbedoTransparency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/ThrownAxe_AxeMaterial_AlbedoTransparency.png -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/ThrownAxe_AxeMaterial_AlbedoTransparency.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/ThrownAxe_AxeMaterial_AlbedoTransparency.png.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/ThrownAxe_AxeMaterial_AlbedoTransparencyWATL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/ThrownAxe_AxeMaterial_AlbedoTransparencyWATL.png -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/ThrownAxe_AxeMaterial_AlbedoTransparencyWATL.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/ThrownAxe_AxeMaterial_AlbedoTransparencyWATL.png.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/ThrownAxe_AxeMaterial_MetallicSmoothness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/ThrownAxe_AxeMaterial_MetallicSmoothness.png -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/ThrownAxe_AxeMaterial_MetallicSmoothness.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/ThrownAxe_AxeMaterial_MetallicSmoothness.png.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/ThrownAxe_AxeMaterial_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/ThrownAxe_AxeMaterial_Normal.png -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/ThrownAxe_AxeMaterial_Normal.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/ThrownAxe_AxeMaterial_Normal.png.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/WoodBoardTarget_WoodBoardTarget_AlbedoTransparency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/WoodBoardTarget_WoodBoardTarget_AlbedoTransparency.png -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/WoodBoardTarget_WoodBoardTarget_AlbedoTransparency.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/WoodBoardTarget_WoodBoardTarget_AlbedoTransparency.png.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/WoodBoardTarget_WoodBoardTarget_MetallicSmoothness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/WoodBoardTarget_WoodBoardTarget_MetallicSmoothness.png -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/WoodBoardTarget_WoodBoardTarget_MetallicSmoothness.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/WoodBoardTarget_WoodBoardTarget_MetallicSmoothness.png.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/WoodBoardTarget_WoodBoardTarget_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/WoodBoardTarget_WoodBoardTarget_Normal.png -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/WoodBoardTarget_WoodBoardTarget_Normal.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/WoodBoardTarget_WoodBoardTarget_Normal.png.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/beeraxe.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/beeraxe.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/beeraxe/beeraxecup.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/beeraxe/beeraxecup.mat -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/beeraxe/beeraxecup.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/beeraxe/beeraxecup.mat.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/beeraxe/beeraxecup.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/beeraxe/beeraxecup.psd -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/beeraxe/beeraxecup.psd.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/beeraxe/beeraxecup.psd.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/beeraxe/beeraxepaint.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/beeraxe/beeraxepaint.mat -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/beeraxe/beeraxepaint.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/beeraxe/beeraxepaint.mat.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/beeraxe/beeraxepaint.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/beeraxe/beeraxepaint.psd -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/beeraxe/beeraxepaint.psd.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/beeraxe/beeraxepaint.psd.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/beeraxe/beeraxepaint2.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/beeraxe/beeraxepaint2.psd -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/beeraxe/beeraxepaint2.psd.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/beeraxe/beeraxepaint2.psd.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/beeraxe/beeraxepaint3.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/beeraxe/beeraxepaint3.psd -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/beeraxe/beeraxepaint3.psd.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/beeraxe/beeraxepaint3.psd.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/beeraxe/beeraxepainthoriz.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/beeraxe/beeraxepainthoriz.mat -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/beeraxe/beeraxepainthoriz.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/beeraxe/beeraxepainthoriz.mat.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/beeraxe/beeraxesingle.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/beeraxe/beeraxesingle.mat -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/beeraxe/beeraxesingle.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/beeraxe/beeraxesingle.mat.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/linepaint.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/linepaint.mat -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/linepaint.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/linepaint.mat.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/linepaint.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/linepaint.psd -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/linepaint.psd.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/linepaint.psd.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/rubbermatfree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/rubbermatfree.png -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/rubbermatfree.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/rubbermatfree.png.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/targetpaint.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/targetpaint.mat -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/targetpaint.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/targetpaint.mat.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/targetpaint.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/targetpaint.psd -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/targetpaint.psd.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/targetpaint.psd.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/thrownaxe.spp.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/thrownaxe.spp.meta -------------------------------------------------------------------------------- /Assets/mahu/axe-throwing/textures/woodboard.spp.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Assets/mahu/axe-throwing/textures/woodboard.spp.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/LICENSE -------------------------------------------------------------------------------- /Packages/.gitignore: -------------------------------------------------------------------------------- 1 | /*/ 2 | !com.vrchat.core.*/ 3 | -------------------------------------------------------------------------------- /Packages/com.vrchat.core.vpm-resolver/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/com.vrchat.core.vpm-resolver/Editor.meta -------------------------------------------------------------------------------- /Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies.meta -------------------------------------------------------------------------------- /Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/SemanticVersioning.License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/SemanticVersioning.License.txt -------------------------------------------------------------------------------- /Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/SemanticVersioning.License.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/SemanticVersioning.License.txt.meta -------------------------------------------------------------------------------- /Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/SemanticVersioning.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/SemanticVersioning.dll -------------------------------------------------------------------------------- /Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/SemanticVersioning.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/SemanticVersioning.dll.meta -------------------------------------------------------------------------------- /Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/Serilog.License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/Serilog.License.txt -------------------------------------------------------------------------------- /Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/Serilog.License.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/Serilog.License.txt.meta -------------------------------------------------------------------------------- /Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/Serilog.Sinks.File.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/Serilog.Sinks.File.dll -------------------------------------------------------------------------------- /Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/Serilog.Sinks.File.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/Serilog.Sinks.File.dll.meta -------------------------------------------------------------------------------- /Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/Serilog.Sinks.File.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/Serilog.Sinks.File.txt -------------------------------------------------------------------------------- /Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/Serilog.Sinks.File.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/Serilog.Sinks.File.txt.meta -------------------------------------------------------------------------------- /Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/Serilog.Sinks.Unity3D.License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/Serilog.Sinks.Unity3D.License.md -------------------------------------------------------------------------------- /Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/Serilog.Sinks.Unity3D.License.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/Serilog.Sinks.Unity3D.License.md.meta -------------------------------------------------------------------------------- /Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/Serilog.Sinks.Unity3D.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/Serilog.Sinks.Unity3D.dll -------------------------------------------------------------------------------- /Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/Serilog.Sinks.Unity3D.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/Serilog.Sinks.Unity3D.dll.meta -------------------------------------------------------------------------------- /Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/Serilog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/Serilog.dll -------------------------------------------------------------------------------- /Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/Serilog.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/Serilog.dll.meta -------------------------------------------------------------------------------- /Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/YamlDotNet.License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/YamlDotNet.License.txt -------------------------------------------------------------------------------- /Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/YamlDotNet.License.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/YamlDotNet.License.txt.meta -------------------------------------------------------------------------------- /Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/YamlDotNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/YamlDotNet.dll -------------------------------------------------------------------------------- /Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/YamlDotNet.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/YamlDotNet.dll.meta -------------------------------------------------------------------------------- /Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/vpm-core-lib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/vpm-core-lib.dll -------------------------------------------------------------------------------- /Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/vpm-core-lib.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/vpm-core-lib.dll.meta -------------------------------------------------------------------------------- /Packages/com.vrchat.core.vpm-resolver/Editor/PackageMaker.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/com.vrchat.core.vpm-resolver/Editor/PackageMaker.meta -------------------------------------------------------------------------------- /Packages/com.vrchat.core.vpm-resolver/Editor/PackageMaker/PackageMakerWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/com.vrchat.core.vpm-resolver/Editor/PackageMaker/PackageMakerWindow.cs -------------------------------------------------------------------------------- /Packages/com.vrchat.core.vpm-resolver/Editor/PackageMaker/PackageMakerWindow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/com.vrchat.core.vpm-resolver/Editor/PackageMaker/PackageMakerWindow.cs.meta -------------------------------------------------------------------------------- /Packages/com.vrchat.core.vpm-resolver/Editor/PackageMaker/PackageMakerWindowData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/com.vrchat.core.vpm-resolver/Editor/PackageMaker/PackageMakerWindowData.cs -------------------------------------------------------------------------------- /Packages/com.vrchat.core.vpm-resolver/Editor/PackageMaker/PackageMakerWindowData.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/com.vrchat.core.vpm-resolver/Editor/PackageMaker/PackageMakerWindowData.cs.meta -------------------------------------------------------------------------------- /Packages/com.vrchat.core.vpm-resolver/Editor/Resolver.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/com.vrchat.core.vpm-resolver/Editor/Resolver.meta -------------------------------------------------------------------------------- /Packages/com.vrchat.core.vpm-resolver/Editor/Resolver/Resolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/com.vrchat.core.vpm-resolver/Editor/Resolver/Resolver.cs -------------------------------------------------------------------------------- /Packages/com.vrchat.core.vpm-resolver/Editor/Resolver/Resolver.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f872e3586f8b4f06bab3c9facd14f6e6 3 | timeCreated: 1659048476 -------------------------------------------------------------------------------- /Packages/com.vrchat.core.vpm-resolver/Editor/Resolver/ResolverWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/com.vrchat.core.vpm-resolver/Editor/Resolver/ResolverWindow.cs -------------------------------------------------------------------------------- /Packages/com.vrchat.core.vpm-resolver/Editor/Resolver/ResolverWindow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/com.vrchat.core.vpm-resolver/Editor/Resolver/ResolverWindow.cs.meta -------------------------------------------------------------------------------- /Packages/com.vrchat.core.vpm-resolver/Editor/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/com.vrchat.core.vpm-resolver/Editor/Resources.meta -------------------------------------------------------------------------------- /Packages/com.vrchat.core.vpm-resolver/Editor/Resources/PackageMakerWindowStyle.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/com.vrchat.core.vpm-resolver/Editor/Resources/PackageMakerWindowStyle.uss -------------------------------------------------------------------------------- /Packages/com.vrchat.core.vpm-resolver/Editor/Resources/PackageMakerWindowStyle.uss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/com.vrchat.core.vpm-resolver/Editor/Resources/PackageMakerWindowStyle.uss.meta -------------------------------------------------------------------------------- /Packages/com.vrchat.core.vpm-resolver/Editor/Resources/ResolverWindowStyle.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/com.vrchat.core.vpm-resolver/Editor/Resources/ResolverWindowStyle.uss -------------------------------------------------------------------------------- /Packages/com.vrchat.core.vpm-resolver/Editor/Resources/ResolverWindowStyle.uss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/com.vrchat.core.vpm-resolver/Editor/Resources/ResolverWindowStyle.uss.meta -------------------------------------------------------------------------------- /Packages/com.vrchat.core.vpm-resolver/Editor/com.vrchat.core.vpm-resolver.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/com.vrchat.core.vpm-resolver/Editor/com.vrchat.core.vpm-resolver.Editor.asmdef -------------------------------------------------------------------------------- /Packages/com.vrchat.core.vpm-resolver/Editor/com.vrchat.core.vpm-resolver.Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/com.vrchat.core.vpm-resolver/Editor/com.vrchat.core.vpm-resolver.Editor.asmdef.meta -------------------------------------------------------------------------------- /Packages/com.vrchat.core.vpm-resolver/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/com.vrchat.core.vpm-resolver/License.md -------------------------------------------------------------------------------- /Packages/com.vrchat.core.vpm-resolver/License.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/com.vrchat.core.vpm-resolver/License.md.meta -------------------------------------------------------------------------------- /Packages/com.vrchat.core.vpm-resolver/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/com.vrchat.core.vpm-resolver/package.json -------------------------------------------------------------------------------- /Packages/com.vrchat.core.vpm-resolver/package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/com.vrchat.core.vpm-resolver/package.json.meta -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/packages-lock.json -------------------------------------------------------------------------------- /Packages/vpm-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/Packages/vpm-manifest.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/BurstAotSettings_Android.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/ProjectSettings/BurstAotSettings_Android.json -------------------------------------------------------------------------------- /ProjectSettings/BurstAotSettings_StandaloneWindows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/ProjectSettings/BurstAotSettings_StandaloneWindows.json -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/Packages/com.unity.probuilder/Settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/ProjectSettings/Packages/com.unity.probuilder/Settings.json -------------------------------------------------------------------------------- /ProjectSettings/Packages/com.unity.progrids/Settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/ProjectSettings/Packages/com.unity.progrids/Settings.json -------------------------------------------------------------------------------- /ProjectSettings/Packages/com.vrchat.base/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/ProjectSettings/Packages/com.vrchat.base/settings.json -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/README.md -------------------------------------------------------------------------------- /bakery_times.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahuvrc/VRCAxeThrowing/HEAD/bakery_times.log --------------------------------------------------------------------------------