├── .gitignore ├── Behaviours.meta ├── Behaviours ├── Experimental.meta ├── Experimental │ ├── Program Assets.meta │ ├── Program Assets │ │ ├── Remote Hands Udon C# Program Asset.asset │ │ ├── Remote Hands Udon C# Program Asset.asset.meta │ │ ├── Sound Occlusion Udon C# Program Asset.asset │ │ └── Sound Occlusion Udon C# Program Asset.asset.meta │ ├── RemoteHands.cs │ ├── RemoteHands.cs.meta │ ├── SoundOcclusion.cs │ └── SoundOcclusion.cs.meta ├── Misc.meta └── Misc │ ├── AreaTrigger.cs │ ├── AreaTrigger.cs.meta │ ├── FogAdjustment.cs │ ├── FogAdjustment.cs.meta │ ├── InteractTrigger.cs │ ├── InteractTrigger.cs.meta │ ├── LerpedFollower.cs │ ├── LerpedFollower.cs.meta │ ├── NetworkedTrigger.cs │ ├── NetworkedTrigger.cs.meta │ ├── ObjectBoundaryTrigger.cs │ ├── ObjectBoundaryTrigger.cs.meta │ ├── PlatformTrigger.cs │ ├── PlatformTrigger.cs.meta │ ├── PlayerMovementModifier.cs │ ├── PlayerMovementModifier.cs.meta │ ├── Program Assets.meta │ ├── Program Assets │ ├── Area Trigger C# Program Asset.asset │ ├── Area Trigger C# Program Asset.asset.meta │ ├── Fog Adjustment Udon C# Program Asset.asset │ ├── Fog Adjustment Udon C# Program Asset.asset.meta │ ├── Interact Trigger Udon C# Program Asset.asset │ ├── Interact Trigger Udon C# Program Asset.asset.meta │ ├── Lerped Follower Udon C# Program Asset.asset │ ├── Lerped Follower Udon C# Program Asset.asset.meta │ ├── Networked Trigger Udon C# Program Asset.asset │ ├── Networked Trigger Udon C# Program Asset.asset.meta │ ├── Object Boundary Trigger Udon C# Program Asset.asset │ ├── Object Boundary Trigger Udon C# Program Asset.asset.meta │ ├── Platform Trigger Udon C# Program Asset.asset │ ├── Platform Trigger Udon C# Program Asset.asset.meta │ ├── Player Movement Modifier Udon C# Program Asset.asset │ ├── Player Movement Modifier Udon C# Program Asset.asset.meta │ ├── Respawn Trigger Udon C# Program Asset.asset │ ├── Respawn Trigger Udon C# Program Asset.asset.meta │ ├── SecretActions Udon C# Program Asset.asset │ ├── SecretActions Udon C# Program Asset.asset.meta │ ├── Shader Feeder Udon C# Program Asset.asset │ ├── Shader Feeder Udon C# Program Asset.asset.meta │ ├── Skybox Adjustment Udon C# Program Asset.asset │ ├── Skybox Adjustment Udon C# Program Asset.asset.meta │ ├── Start Trigger Udon C# Program Asset.asset │ ├── Start Trigger Udon C# Program Asset.asset.meta │ ├── Synced Trigger Udon C# Program Asset.asset │ ├── Synced Trigger Udon C# Program Asset.asset.meta │ ├── Teleporter C# Program Asset.asset │ ├── Teleporter C# Program Asset.asset.meta │ ├── UI Readout Udon C# Program Asset.asset │ ├── UI Readout Udon C# Program Asset.asset.meta │ ├── Universal Action Udon C# Program Asset.asset │ ├── Universal Action Udon C# Program Asset.asset.meta │ ├── UniversalTracker C# Program Asset.asset │ ├── UniversalTracker C# Program Asset.asset.meta │ ├── Velocity Tracker Udon C# Program Asset.asset │ └── Velocity Tracker Udon C# Program Asset.asset.meta │ ├── RespawnTrigger.cs │ ├── RespawnTrigger.cs.meta │ ├── SecretActions.cs │ ├── SecretActions.cs.meta │ ├── ShaderFeeder.cs │ ├── ShaderFeeder.cs.meta │ ├── SkyboxAdjustment.cs │ ├── SkyboxAdjustment.cs.meta │ ├── StartTrigger.cs │ ├── StartTrigger.cs.meta │ ├── SyncedTrigger.cs │ ├── SyncedTrigger.cs.meta │ ├── Teleporter.cs │ ├── Teleporter.cs.meta │ ├── UIReadout.cs │ ├── UIReadout.cs.meta │ ├── UniversalAction.cs │ ├── UniversalAction.cs.meta │ ├── UniversalTracker.cs │ ├── UniversalTracker.cs.meta │ ├── VelocityTracker.cs │ └── VelocityTracker.cs.meta ├── Demo.meta ├── Demo ├── Base Scene.unity ├── Base Scene.unity.meta ├── CustomAttributeSample.meta ├── CustomAttributeSample │ ├── CustomAttributeTest Udon C# Program Asset.asset │ ├── CustomAttributeTest Udon C# Program Asset.asset.meta │ ├── CustomAttributeTest.cs │ ├── CustomAttributeTest.cs.meta │ ├── MyAttribute.cs │ └── MyAttribute.cs.meta ├── CustomUISample.cs ├── CustomUISample.cs.meta ├── Demo Assets.meta ├── Demo Assets │ ├── Active Skybox.mat │ ├── Active Skybox.mat.meta │ ├── Blue.mat │ ├── Blue.mat.meta │ ├── CalibrationFloor.mat │ ├── CalibrationFloor.mat.meta │ ├── CalibrationFloorDiffuse.tif │ ├── CalibrationFloorDiffuse.tif.meta │ ├── CalibrationFloorSpecularGloss.tif │ ├── CalibrationFloorSpecularGloss.tif.meta │ ├── Custom UI Sample Udon C# Program Asset.asset │ ├── Custom UI Sample Udon C# Program Asset.asset.meta │ ├── Default Skybox.mat │ ├── Default Skybox.mat.meta │ ├── Flight System.meta │ ├── Flight System │ │ ├── Boost.mat │ │ ├── Boost.mat.meta │ │ ├── CalibrationFloor Tiled Flight.mat │ │ ├── CalibrationFloor Tiled Flight.mat.meta │ │ ├── CalibrationFloor Tiled.mat │ │ ├── CalibrationFloor Tiled.mat.meta │ │ ├── Direction 2.png │ │ ├── Direction 2.png.meta │ │ ├── Direction.png │ │ ├── Direction.png.meta │ │ ├── Flight Restriction.mat │ │ ├── Flight Restriction.mat.meta │ │ ├── Flight System Floor.shader │ │ ├── Flight System Floor.shader.meta │ │ ├── Shiny.mat │ │ ├── Shiny.mat.meta │ │ ├── Speed.png │ │ ├── Speed.png.meta │ │ ├── Text Normal.mat │ │ ├── Text Normal.mat.meta │ │ ├── Text Overlay.mat │ │ └── Text Overlay.mat.meta │ ├── Light Bridge.mat │ ├── Light Bridge.mat.meta │ ├── Light Bridge.shader │ ├── Light Bridge.shader.meta │ ├── MUI.meta │ ├── MUI │ │ ├── LICENSE │ │ ├── LICENSE.meta │ │ ├── README.md │ │ ├── README.md.meta │ │ ├── UI-MerlinUI Overlay.shader │ │ ├── UI-MerlinUI Overlay.shader.meta │ │ ├── UI-MerlinUI.shader │ │ └── UI-MerlinUI.shader.meta │ ├── Press Demo.controller │ ├── Press Demo.controller.meta │ ├── Pulse Cutoff.mat │ ├── Pulse Cutoff.mat.meta │ ├── Pulse Shader.shader │ ├── Pulse Shader.shader.meta │ ├── Pulse.mat │ ├── Pulse.mat.meta │ ├── Purple.mat │ ├── Purple.mat.meta │ ├── Trigger Demo.controller │ ├── Trigger Demo.controller.meta │ ├── White.mat │ └── White.mat.meta ├── Flight System Demo.unity ├── Flight System Demo.unity.meta ├── Misc Demo.meta ├── Misc Demo.unity ├── Misc Demo.unity.meta ├── Misc Demo │ ├── LightingData.asset │ ├── LightingData.asset.meta │ ├── Lightmap-0_comp_light.exr │ ├── Lightmap-0_comp_light.exr.meta │ ├── Lightmap-1_comp_light.exr │ ├── Lightmap-1_comp_light.exr.meta │ ├── Lightmap-2_comp_light.exr │ ├── Lightmap-2_comp_light.exr.meta │ ├── Lightmap-3_comp_light.exr │ ├── Lightmap-3_comp_light.exr.meta │ ├── Lightmap-4_comp_light.exr │ ├── Lightmap-4_comp_light.exr.meta │ ├── ReflectionProbe-0.exr │ ├── ReflectionProbe-0.exr.meta │ ├── ReflectionProbe-1.exr │ └── ReflectionProbe-1.exr.meta ├── Misc Demo_Profiles.meta ├── Misc Demo_Profiles │ ├── PP Profile.asset │ └── PP Profile.asset.meta ├── Presentation System Demo.unity ├── Presentation System Demo.unity.meta ├── Shader Feeder Demo.unity └── Shader Feeder Demo.unity.meta ├── Internals.meta ├── Internals ├── Attributes.meta ├── Attributes │ ├── UTAttributes.cs │ ├── UTAttributes.cs.meta │ ├── UTStyles.cs │ ├── UTStyles.cs.meta │ ├── UTUtils.cs │ └── UTUtils.cs.meta ├── Editor.meta ├── Editor │ ├── UTEditor.cs │ ├── UTEditor.cs.meta │ ├── UTEditorArray.cs │ ├── UTEditorArray.cs.meta │ ├── UTEditorFieldHandling.cs │ ├── UTEditorFieldHandling.cs.meta │ ├── UTEditorLegacy.cs │ ├── UTEditorLegacy.cs.meta │ ├── UTListViewHandler.cs │ ├── UTListViewHandler.cs.meta │ ├── UTReorderable.cs │ ├── UTReorderable.cs.meta │ ├── UTStartup.cs │ ├── UTStartup.cs.meta │ ├── UdonToolkitEditor.asmdef │ └── UdonToolkitEditor.asmdef.meta ├── Resources.meta └── Resources │ ├── Arrow_L.png │ ├── Arrow_L.png.meta │ ├── Arrow_R.png │ ├── Arrow_R.png.meta │ ├── Component BG.png │ ├── Component BG.png.meta │ ├── FredokaOne-Regular.ttf │ ├── FredokaOne-Regular.ttf.meta │ ├── Nunito-SemiBold.ttf │ ├── Nunito-SemiBold.ttf.meta │ ├── USharpTemplate.txt │ ├── USharpTemplate.txt.meta │ ├── Undo.png │ ├── Undo.png.meta │ ├── Utils.png │ └── Utils.png.meta ├── LICENSE ├── LICENSE.meta ├── README.md ├── README.md.meta ├── Systems.meta ├── Systems ├── Flight System.meta ├── Flight System │ ├── Boost Gate.prefab │ ├── Boost Gate.prefab.meta │ ├── Flight Restriction Zone.prefab │ ├── Flight Restriction Zone.prefab.meta │ ├── Flight System Debugger C# Program Asset.asset │ ├── Flight System Debugger C# Program Asset.asset.meta │ ├── Flight System Debugger.prefab │ ├── Flight System Debugger.prefab.meta │ ├── Flight System Udon C# Program Asset.asset │ ├── Flight System Udon C# Program Asset.asset.meta │ ├── Flight System.prefab │ ├── Flight System.prefab.meta │ ├── FlightSystem.cs │ ├── FlightSystem.cs.meta │ ├── FlightSystemDebugger.cs │ ├── FlightSystemDebugger.cs.meta │ ├── FlightSystemDemoSettings.preset │ └── FlightSystemDemoSettings.preset.meta ├── Presentation System.meta └── Presentation System │ ├── Assets.meta │ ├── Assets │ ├── Laser Dot.shader │ ├── Laser Dot.shader.meta │ ├── Laser Line.shader │ ├── Laser Line.shader.meta │ ├── Laser Pointer.fbx │ ├── Laser Pointer.fbx.meta │ ├── Lato-Regular SDF.asset │ ├── Lato-Regular SDF.asset.meta │ ├── Personal Screen.fbx │ ├── Personal Screen.fbx.meta │ ├── Stream Active.anim │ ├── Stream Active.anim.meta │ ├── Stream Controller.controller │ ├── Stream Controller.controller.meta │ ├── Stream Idle.anim │ ├── Stream Idle.anim.meta │ ├── Streamer Spot Walls.fbx │ └── Streamer Spot Walls.fbx.meta │ ├── LaserPointer.cs │ ├── LaserPointer.cs.meta │ ├── Materials.meta │ ├── Materials │ ├── Grey.mat │ ├── Grey.mat.meta │ ├── Laser Dot.mat │ ├── Laser Dot.mat.meta │ ├── Laser Line.mat │ ├── Laser Line.mat.meta │ ├── Metal Shiny Color.mat │ ├── Metal Shiny Color.mat.meta │ ├── Presentation Lookahead.mat │ ├── Presentation Lookahead.mat.meta │ ├── Presentation Lookahead.renderTexture │ ├── Presentation Lookahead.renderTexture.meta │ ├── Presentation Placeholder.mat │ ├── Presentation Placeholder.mat.meta │ ├── Presentation Screeen.renderTexture │ ├── Presentation Screeen.renderTexture.meta │ ├── Presentation Screen.mat │ ├── Presentation Screen.mat.meta │ ├── Presentation Stream.mat │ ├── Presentation Stream.mat.meta │ ├── Presentation Stream.renderTexture │ ├── Presentation Stream.renderTexture.meta │ ├── Speaker Camera.renderTexture │ └── Speaker Camera.renderTexture.meta │ ├── Presentation System.prefab │ ├── Presentation System.prefab.meta │ ├── PresentationCameraTarget.cs │ ├── PresentationCameraTarget.cs.meta │ ├── PresentationPersonalScreen.cs │ ├── PresentationPersonalScreen.cs.meta │ ├── PresentationPlayer.cs │ ├── PresentationPlayer.cs.meta │ ├── PresentationScreenController.cs │ ├── PresentationScreenController.cs.meta │ ├── PresentationStreamController.cs │ ├── PresentationStreamController.cs.meta │ ├── PresentationTalk.cs │ ├── PresentationTalk.cs.meta │ ├── PresentationUIController.cs │ ├── PresentationUIController.cs.meta │ ├── PresentationVideoPlayer.cs │ ├── PresentationVideoPlayer.cs.meta │ ├── PresentationVoiceController.cs │ ├── PresentationVoiceController.cs.meta │ ├── PresentationVoiceZone.cs │ ├── PresentationVoiceZone.cs.meta │ ├── Program Assets.meta │ ├── Program Assets │ ├── Laser Pointer Udon C# Program Asset.asset │ ├── Laser Pointer Udon C# Program Asset.asset.meta │ ├── Presentation Camera Target Udon C# Program Asset.asset │ ├── Presentation Camera Target Udon C# Program Asset.asset.meta │ ├── Presentation Personal Screen Udon C# Program Asset.asset │ ├── Presentation Personal Screen Udon C# Program Asset.asset.meta │ ├── Presentation Player Udon C# Program Asset.asset │ ├── Presentation Player Udon C# Program Asset.asset.meta │ ├── Presentation Screen Controller Udon C# Program Asset.asset │ ├── Presentation Screen Controller Udon C# Program Asset.asset.meta │ ├── Presentation Stream Controller Udon C# Program Asset.asset │ ├── Presentation Stream Controller Udon C# Program Asset.asset.meta │ ├── Presentation Talk Udon C# Program Asset.asset │ ├── Presentation Talk Udon C# Program Asset.asset.meta │ ├── Presentation UI Controller Udon C# Program Asset.asset │ ├── Presentation UI Controller Udon C# Program Asset.asset.meta │ ├── Presentation Voice Controller Udon C# Program Asset.asset │ ├── Presentation Voice Controller Udon C# Program Asset.asset.meta │ ├── Presentation Voice Zone Udon C# Program Asset.asset │ ├── Presentation Voice Zone Udon C# Program Asset.asset.meta │ ├── PresentationVideoPlayer Udon C# Program Asset.asset │ └── PresentationVideoPlayer Udon C# Program Asset.asset.meta │ ├── Textures.meta │ └── Textures │ ├── Brushed Map Metal Combined.png │ ├── Brushed Map Metal Combined.png.meta │ ├── PS Background.png │ ├── PS Background.png.meta │ ├── PS Branding.png │ ├── PS Branding.png.meta │ ├── PS Logo.png │ ├── PS Logo.png.meta │ ├── Presentation System Placeholder.png │ └── Presentation System Placeholder.png.meta ├── UdonToolkitRuntime.asmdef ├── UdonToolkitRuntime.asmdef.meta ├── UdonToolkitRuntime.asset ├── UdonToolkitRuntime.asset.meta ├── package.json ├── package.json.meta ├── version.txt └── version.txt.meta /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /Behaviours.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours.meta -------------------------------------------------------------------------------- /Behaviours/Experimental.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Experimental.meta -------------------------------------------------------------------------------- /Behaviours/Experimental/Program Assets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Experimental/Program Assets.meta -------------------------------------------------------------------------------- /Behaviours/Experimental/Program Assets/Remote Hands Udon C# Program Asset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Experimental/Program Assets/Remote Hands Udon C# Program Asset.asset -------------------------------------------------------------------------------- /Behaviours/Experimental/Program Assets/Remote Hands Udon C# Program Asset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Experimental/Program Assets/Remote Hands Udon C# Program Asset.asset.meta -------------------------------------------------------------------------------- /Behaviours/Experimental/Program Assets/Sound Occlusion Udon C# Program Asset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Experimental/Program Assets/Sound Occlusion Udon C# Program Asset.asset -------------------------------------------------------------------------------- /Behaviours/Experimental/Program Assets/Sound Occlusion Udon C# Program Asset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Experimental/Program Assets/Sound Occlusion Udon C# Program Asset.asset.meta -------------------------------------------------------------------------------- /Behaviours/Experimental/RemoteHands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Experimental/RemoteHands.cs -------------------------------------------------------------------------------- /Behaviours/Experimental/RemoteHands.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Experimental/RemoteHands.cs.meta -------------------------------------------------------------------------------- /Behaviours/Experimental/SoundOcclusion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Experimental/SoundOcclusion.cs -------------------------------------------------------------------------------- /Behaviours/Experimental/SoundOcclusion.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Experimental/SoundOcclusion.cs.meta -------------------------------------------------------------------------------- /Behaviours/Misc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc.meta -------------------------------------------------------------------------------- /Behaviours/Misc/AreaTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/AreaTrigger.cs -------------------------------------------------------------------------------- /Behaviours/Misc/AreaTrigger.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/AreaTrigger.cs.meta -------------------------------------------------------------------------------- /Behaviours/Misc/FogAdjustment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/FogAdjustment.cs -------------------------------------------------------------------------------- /Behaviours/Misc/FogAdjustment.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/FogAdjustment.cs.meta -------------------------------------------------------------------------------- /Behaviours/Misc/InteractTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/InteractTrigger.cs -------------------------------------------------------------------------------- /Behaviours/Misc/InteractTrigger.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/InteractTrigger.cs.meta -------------------------------------------------------------------------------- /Behaviours/Misc/LerpedFollower.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/LerpedFollower.cs -------------------------------------------------------------------------------- /Behaviours/Misc/LerpedFollower.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/LerpedFollower.cs.meta -------------------------------------------------------------------------------- /Behaviours/Misc/NetworkedTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/NetworkedTrigger.cs -------------------------------------------------------------------------------- /Behaviours/Misc/NetworkedTrigger.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/NetworkedTrigger.cs.meta -------------------------------------------------------------------------------- /Behaviours/Misc/ObjectBoundaryTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/ObjectBoundaryTrigger.cs -------------------------------------------------------------------------------- /Behaviours/Misc/ObjectBoundaryTrigger.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/ObjectBoundaryTrigger.cs.meta -------------------------------------------------------------------------------- /Behaviours/Misc/PlatformTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/PlatformTrigger.cs -------------------------------------------------------------------------------- /Behaviours/Misc/PlatformTrigger.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/PlatformTrigger.cs.meta -------------------------------------------------------------------------------- /Behaviours/Misc/PlayerMovementModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/PlayerMovementModifier.cs -------------------------------------------------------------------------------- /Behaviours/Misc/PlayerMovementModifier.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/PlayerMovementModifier.cs.meta -------------------------------------------------------------------------------- /Behaviours/Misc/Program Assets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/Program Assets.meta -------------------------------------------------------------------------------- /Behaviours/Misc/Program Assets/Area Trigger C# Program Asset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/Program Assets/Area Trigger C# Program Asset.asset -------------------------------------------------------------------------------- /Behaviours/Misc/Program Assets/Area Trigger C# Program Asset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/Program Assets/Area Trigger C# Program Asset.asset.meta -------------------------------------------------------------------------------- /Behaviours/Misc/Program Assets/Fog Adjustment Udon C# Program Asset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/Program Assets/Fog Adjustment Udon C# Program Asset.asset -------------------------------------------------------------------------------- /Behaviours/Misc/Program Assets/Fog Adjustment Udon C# Program Asset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/Program Assets/Fog Adjustment Udon C# Program Asset.asset.meta -------------------------------------------------------------------------------- /Behaviours/Misc/Program Assets/Interact Trigger Udon C# Program Asset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/Program Assets/Interact Trigger Udon C# Program Asset.asset -------------------------------------------------------------------------------- /Behaviours/Misc/Program Assets/Interact Trigger Udon C# Program Asset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/Program Assets/Interact Trigger Udon C# Program Asset.asset.meta -------------------------------------------------------------------------------- /Behaviours/Misc/Program Assets/Lerped Follower Udon C# Program Asset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/Program Assets/Lerped Follower Udon C# Program Asset.asset -------------------------------------------------------------------------------- /Behaviours/Misc/Program Assets/Lerped Follower Udon C# Program Asset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/Program Assets/Lerped Follower Udon C# Program Asset.asset.meta -------------------------------------------------------------------------------- /Behaviours/Misc/Program Assets/Networked Trigger Udon C# Program Asset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/Program Assets/Networked Trigger Udon C# Program Asset.asset -------------------------------------------------------------------------------- /Behaviours/Misc/Program Assets/Networked Trigger Udon C# Program Asset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/Program Assets/Networked Trigger Udon C# Program Asset.asset.meta -------------------------------------------------------------------------------- /Behaviours/Misc/Program Assets/Object Boundary Trigger Udon C# Program Asset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/Program Assets/Object Boundary Trigger Udon C# Program Asset.asset -------------------------------------------------------------------------------- /Behaviours/Misc/Program Assets/Object Boundary Trigger Udon C# Program Asset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/Program Assets/Object Boundary Trigger Udon C# Program Asset.asset.meta -------------------------------------------------------------------------------- /Behaviours/Misc/Program Assets/Platform Trigger Udon C# Program Asset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/Program Assets/Platform Trigger Udon C# Program Asset.asset -------------------------------------------------------------------------------- /Behaviours/Misc/Program Assets/Platform Trigger Udon C# Program Asset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/Program Assets/Platform Trigger Udon C# Program Asset.asset.meta -------------------------------------------------------------------------------- /Behaviours/Misc/Program Assets/Player Movement Modifier Udon C# Program Asset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/Program Assets/Player Movement Modifier Udon C# Program Asset.asset -------------------------------------------------------------------------------- /Behaviours/Misc/Program Assets/Player Movement Modifier Udon C# Program Asset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/Program Assets/Player Movement Modifier Udon C# Program Asset.asset.meta -------------------------------------------------------------------------------- /Behaviours/Misc/Program Assets/Respawn Trigger Udon C# Program Asset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/Program Assets/Respawn Trigger Udon C# Program Asset.asset -------------------------------------------------------------------------------- /Behaviours/Misc/Program Assets/Respawn Trigger Udon C# Program Asset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/Program Assets/Respawn Trigger Udon C# Program Asset.asset.meta -------------------------------------------------------------------------------- /Behaviours/Misc/Program Assets/SecretActions Udon C# Program Asset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/Program Assets/SecretActions Udon C# Program Asset.asset -------------------------------------------------------------------------------- /Behaviours/Misc/Program Assets/SecretActions Udon C# Program Asset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/Program Assets/SecretActions Udon C# Program Asset.asset.meta -------------------------------------------------------------------------------- /Behaviours/Misc/Program Assets/Shader Feeder Udon C# Program Asset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/Program Assets/Shader Feeder Udon C# Program Asset.asset -------------------------------------------------------------------------------- /Behaviours/Misc/Program Assets/Shader Feeder Udon C# Program Asset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/Program Assets/Shader Feeder Udon C# Program Asset.asset.meta -------------------------------------------------------------------------------- /Behaviours/Misc/Program Assets/Skybox Adjustment Udon C# Program Asset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/Program Assets/Skybox Adjustment Udon C# Program Asset.asset -------------------------------------------------------------------------------- /Behaviours/Misc/Program Assets/Skybox Adjustment Udon C# Program Asset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/Program Assets/Skybox Adjustment Udon C# Program Asset.asset.meta -------------------------------------------------------------------------------- /Behaviours/Misc/Program Assets/Start Trigger Udon C# Program Asset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/Program Assets/Start Trigger Udon C# Program Asset.asset -------------------------------------------------------------------------------- /Behaviours/Misc/Program Assets/Start Trigger Udon C# Program Asset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/Program Assets/Start Trigger Udon C# Program Asset.asset.meta -------------------------------------------------------------------------------- /Behaviours/Misc/Program Assets/Synced Trigger Udon C# Program Asset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/Program Assets/Synced Trigger Udon C# Program Asset.asset -------------------------------------------------------------------------------- /Behaviours/Misc/Program Assets/Synced Trigger Udon C# Program Asset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/Program Assets/Synced Trigger Udon C# Program Asset.asset.meta -------------------------------------------------------------------------------- /Behaviours/Misc/Program Assets/Teleporter C# Program Asset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/Program Assets/Teleporter C# Program Asset.asset -------------------------------------------------------------------------------- /Behaviours/Misc/Program Assets/Teleporter C# Program Asset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/Program Assets/Teleporter C# Program Asset.asset.meta -------------------------------------------------------------------------------- /Behaviours/Misc/Program Assets/UI Readout Udon C# Program Asset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/Program Assets/UI Readout Udon C# Program Asset.asset -------------------------------------------------------------------------------- /Behaviours/Misc/Program Assets/UI Readout Udon C# Program Asset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/Program Assets/UI Readout Udon C# Program Asset.asset.meta -------------------------------------------------------------------------------- /Behaviours/Misc/Program Assets/Universal Action Udon C# Program Asset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/Program Assets/Universal Action Udon C# Program Asset.asset -------------------------------------------------------------------------------- /Behaviours/Misc/Program Assets/Universal Action Udon C# Program Asset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/Program Assets/Universal Action Udon C# Program Asset.asset.meta -------------------------------------------------------------------------------- /Behaviours/Misc/Program Assets/UniversalTracker C# Program Asset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/Program Assets/UniversalTracker C# Program Asset.asset -------------------------------------------------------------------------------- /Behaviours/Misc/Program Assets/UniversalTracker C# Program Asset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/Program Assets/UniversalTracker C# Program Asset.asset.meta -------------------------------------------------------------------------------- /Behaviours/Misc/Program Assets/Velocity Tracker Udon C# Program Asset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/Program Assets/Velocity Tracker Udon C# Program Asset.asset -------------------------------------------------------------------------------- /Behaviours/Misc/Program Assets/Velocity Tracker Udon C# Program Asset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/Program Assets/Velocity Tracker Udon C# Program Asset.asset.meta -------------------------------------------------------------------------------- /Behaviours/Misc/RespawnTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/RespawnTrigger.cs -------------------------------------------------------------------------------- /Behaviours/Misc/RespawnTrigger.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/RespawnTrigger.cs.meta -------------------------------------------------------------------------------- /Behaviours/Misc/SecretActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/SecretActions.cs -------------------------------------------------------------------------------- /Behaviours/Misc/SecretActions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/SecretActions.cs.meta -------------------------------------------------------------------------------- /Behaviours/Misc/ShaderFeeder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/ShaderFeeder.cs -------------------------------------------------------------------------------- /Behaviours/Misc/ShaderFeeder.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/ShaderFeeder.cs.meta -------------------------------------------------------------------------------- /Behaviours/Misc/SkyboxAdjustment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/SkyboxAdjustment.cs -------------------------------------------------------------------------------- /Behaviours/Misc/SkyboxAdjustment.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/SkyboxAdjustment.cs.meta -------------------------------------------------------------------------------- /Behaviours/Misc/StartTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/StartTrigger.cs -------------------------------------------------------------------------------- /Behaviours/Misc/StartTrigger.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/StartTrigger.cs.meta -------------------------------------------------------------------------------- /Behaviours/Misc/SyncedTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/SyncedTrigger.cs -------------------------------------------------------------------------------- /Behaviours/Misc/SyncedTrigger.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/SyncedTrigger.cs.meta -------------------------------------------------------------------------------- /Behaviours/Misc/Teleporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/Teleporter.cs -------------------------------------------------------------------------------- /Behaviours/Misc/Teleporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/Teleporter.cs.meta -------------------------------------------------------------------------------- /Behaviours/Misc/UIReadout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/UIReadout.cs -------------------------------------------------------------------------------- /Behaviours/Misc/UIReadout.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/UIReadout.cs.meta -------------------------------------------------------------------------------- /Behaviours/Misc/UniversalAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/UniversalAction.cs -------------------------------------------------------------------------------- /Behaviours/Misc/UniversalAction.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/UniversalAction.cs.meta -------------------------------------------------------------------------------- /Behaviours/Misc/UniversalTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/UniversalTracker.cs -------------------------------------------------------------------------------- /Behaviours/Misc/UniversalTracker.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/UniversalTracker.cs.meta -------------------------------------------------------------------------------- /Behaviours/Misc/VelocityTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/VelocityTracker.cs -------------------------------------------------------------------------------- /Behaviours/Misc/VelocityTracker.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Behaviours/Misc/VelocityTracker.cs.meta -------------------------------------------------------------------------------- /Demo.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo.meta -------------------------------------------------------------------------------- /Demo/Base Scene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Base Scene.unity -------------------------------------------------------------------------------- /Demo/Base Scene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Base Scene.unity.meta -------------------------------------------------------------------------------- /Demo/CustomAttributeSample.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/CustomAttributeSample.meta -------------------------------------------------------------------------------- /Demo/CustomAttributeSample/CustomAttributeTest Udon C# Program Asset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/CustomAttributeSample/CustomAttributeTest Udon C# Program Asset.asset -------------------------------------------------------------------------------- /Demo/CustomAttributeSample/CustomAttributeTest Udon C# Program Asset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/CustomAttributeSample/CustomAttributeTest Udon C# Program Asset.asset.meta -------------------------------------------------------------------------------- /Demo/CustomAttributeSample/CustomAttributeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/CustomAttributeSample/CustomAttributeTest.cs -------------------------------------------------------------------------------- /Demo/CustomAttributeSample/CustomAttributeTest.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/CustomAttributeSample/CustomAttributeTest.cs.meta -------------------------------------------------------------------------------- /Demo/CustomAttributeSample/MyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/CustomAttributeSample/MyAttribute.cs -------------------------------------------------------------------------------- /Demo/CustomAttributeSample/MyAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/CustomAttributeSample/MyAttribute.cs.meta -------------------------------------------------------------------------------- /Demo/CustomUISample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/CustomUISample.cs -------------------------------------------------------------------------------- /Demo/CustomUISample.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/CustomUISample.cs.meta -------------------------------------------------------------------------------- /Demo/Demo Assets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets.meta -------------------------------------------------------------------------------- /Demo/Demo Assets/Active Skybox.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Active Skybox.mat -------------------------------------------------------------------------------- /Demo/Demo Assets/Active Skybox.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Active Skybox.mat.meta -------------------------------------------------------------------------------- /Demo/Demo Assets/Blue.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Blue.mat -------------------------------------------------------------------------------- /Demo/Demo Assets/Blue.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Blue.mat.meta -------------------------------------------------------------------------------- /Demo/Demo Assets/CalibrationFloor.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/CalibrationFloor.mat -------------------------------------------------------------------------------- /Demo/Demo Assets/CalibrationFloor.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/CalibrationFloor.mat.meta -------------------------------------------------------------------------------- /Demo/Demo Assets/CalibrationFloorDiffuse.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/CalibrationFloorDiffuse.tif -------------------------------------------------------------------------------- /Demo/Demo Assets/CalibrationFloorDiffuse.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/CalibrationFloorDiffuse.tif.meta -------------------------------------------------------------------------------- /Demo/Demo Assets/CalibrationFloorSpecularGloss.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/CalibrationFloorSpecularGloss.tif -------------------------------------------------------------------------------- /Demo/Demo Assets/CalibrationFloorSpecularGloss.tif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/CalibrationFloorSpecularGloss.tif.meta -------------------------------------------------------------------------------- /Demo/Demo Assets/Custom UI Sample Udon C# Program Asset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Custom UI Sample Udon C# Program Asset.asset -------------------------------------------------------------------------------- /Demo/Demo Assets/Custom UI Sample Udon C# Program Asset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Custom UI Sample Udon C# Program Asset.asset.meta -------------------------------------------------------------------------------- /Demo/Demo Assets/Default Skybox.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Default Skybox.mat -------------------------------------------------------------------------------- /Demo/Demo Assets/Default Skybox.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Default Skybox.mat.meta -------------------------------------------------------------------------------- /Demo/Demo Assets/Flight System.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Flight System.meta -------------------------------------------------------------------------------- /Demo/Demo Assets/Flight System/Boost.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Flight System/Boost.mat -------------------------------------------------------------------------------- /Demo/Demo Assets/Flight System/Boost.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Flight System/Boost.mat.meta -------------------------------------------------------------------------------- /Demo/Demo Assets/Flight System/CalibrationFloor Tiled Flight.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Flight System/CalibrationFloor Tiled Flight.mat -------------------------------------------------------------------------------- /Demo/Demo Assets/Flight System/CalibrationFloor Tiled Flight.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Flight System/CalibrationFloor Tiled Flight.mat.meta -------------------------------------------------------------------------------- /Demo/Demo Assets/Flight System/CalibrationFloor Tiled.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Flight System/CalibrationFloor Tiled.mat -------------------------------------------------------------------------------- /Demo/Demo Assets/Flight System/CalibrationFloor Tiled.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Flight System/CalibrationFloor Tiled.mat.meta -------------------------------------------------------------------------------- /Demo/Demo Assets/Flight System/Direction 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Flight System/Direction 2.png -------------------------------------------------------------------------------- /Demo/Demo Assets/Flight System/Direction 2.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Flight System/Direction 2.png.meta -------------------------------------------------------------------------------- /Demo/Demo Assets/Flight System/Direction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Flight System/Direction.png -------------------------------------------------------------------------------- /Demo/Demo Assets/Flight System/Direction.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Flight System/Direction.png.meta -------------------------------------------------------------------------------- /Demo/Demo Assets/Flight System/Flight Restriction.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Flight System/Flight Restriction.mat -------------------------------------------------------------------------------- /Demo/Demo Assets/Flight System/Flight Restriction.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Flight System/Flight Restriction.mat.meta -------------------------------------------------------------------------------- /Demo/Demo Assets/Flight System/Flight System Floor.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Flight System/Flight System Floor.shader -------------------------------------------------------------------------------- /Demo/Demo Assets/Flight System/Flight System Floor.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Flight System/Flight System Floor.shader.meta -------------------------------------------------------------------------------- /Demo/Demo Assets/Flight System/Shiny.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Flight System/Shiny.mat -------------------------------------------------------------------------------- /Demo/Demo Assets/Flight System/Shiny.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Flight System/Shiny.mat.meta -------------------------------------------------------------------------------- /Demo/Demo Assets/Flight System/Speed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Flight System/Speed.png -------------------------------------------------------------------------------- /Demo/Demo Assets/Flight System/Speed.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Flight System/Speed.png.meta -------------------------------------------------------------------------------- /Demo/Demo Assets/Flight System/Text Normal.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Flight System/Text Normal.mat -------------------------------------------------------------------------------- /Demo/Demo Assets/Flight System/Text Normal.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Flight System/Text Normal.mat.meta -------------------------------------------------------------------------------- /Demo/Demo Assets/Flight System/Text Overlay.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Flight System/Text Overlay.mat -------------------------------------------------------------------------------- /Demo/Demo Assets/Flight System/Text Overlay.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Flight System/Text Overlay.mat.meta -------------------------------------------------------------------------------- /Demo/Demo Assets/Light Bridge.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Light Bridge.mat -------------------------------------------------------------------------------- /Demo/Demo Assets/Light Bridge.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Light Bridge.mat.meta -------------------------------------------------------------------------------- /Demo/Demo Assets/Light Bridge.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Light Bridge.shader -------------------------------------------------------------------------------- /Demo/Demo Assets/Light Bridge.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Light Bridge.shader.meta -------------------------------------------------------------------------------- /Demo/Demo Assets/MUI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/MUI.meta -------------------------------------------------------------------------------- /Demo/Demo Assets/MUI/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/MUI/LICENSE -------------------------------------------------------------------------------- /Demo/Demo Assets/MUI/LICENSE.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/MUI/LICENSE.meta -------------------------------------------------------------------------------- /Demo/Demo Assets/MUI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/MUI/README.md -------------------------------------------------------------------------------- /Demo/Demo Assets/MUI/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/MUI/README.md.meta -------------------------------------------------------------------------------- /Demo/Demo Assets/MUI/UI-MerlinUI Overlay.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/MUI/UI-MerlinUI Overlay.shader -------------------------------------------------------------------------------- /Demo/Demo Assets/MUI/UI-MerlinUI Overlay.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/MUI/UI-MerlinUI Overlay.shader.meta -------------------------------------------------------------------------------- /Demo/Demo Assets/MUI/UI-MerlinUI.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/MUI/UI-MerlinUI.shader -------------------------------------------------------------------------------- /Demo/Demo Assets/MUI/UI-MerlinUI.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/MUI/UI-MerlinUI.shader.meta -------------------------------------------------------------------------------- /Demo/Demo Assets/Press Demo.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Press Demo.controller -------------------------------------------------------------------------------- /Demo/Demo Assets/Press Demo.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Press Demo.controller.meta -------------------------------------------------------------------------------- /Demo/Demo Assets/Pulse Cutoff.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Pulse Cutoff.mat -------------------------------------------------------------------------------- /Demo/Demo Assets/Pulse Cutoff.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Pulse Cutoff.mat.meta -------------------------------------------------------------------------------- /Demo/Demo Assets/Pulse Shader.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Pulse Shader.shader -------------------------------------------------------------------------------- /Demo/Demo Assets/Pulse Shader.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Pulse Shader.shader.meta -------------------------------------------------------------------------------- /Demo/Demo Assets/Pulse.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Pulse.mat -------------------------------------------------------------------------------- /Demo/Demo Assets/Pulse.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Pulse.mat.meta -------------------------------------------------------------------------------- /Demo/Demo Assets/Purple.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Purple.mat -------------------------------------------------------------------------------- /Demo/Demo Assets/Purple.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Purple.mat.meta -------------------------------------------------------------------------------- /Demo/Demo Assets/Trigger Demo.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Trigger Demo.controller -------------------------------------------------------------------------------- /Demo/Demo Assets/Trigger Demo.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/Trigger Demo.controller.meta -------------------------------------------------------------------------------- /Demo/Demo Assets/White.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/White.mat -------------------------------------------------------------------------------- /Demo/Demo Assets/White.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Demo Assets/White.mat.meta -------------------------------------------------------------------------------- /Demo/Flight System Demo.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Flight System Demo.unity -------------------------------------------------------------------------------- /Demo/Flight System Demo.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Flight System Demo.unity.meta -------------------------------------------------------------------------------- /Demo/Misc Demo.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Misc Demo.meta -------------------------------------------------------------------------------- /Demo/Misc Demo.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Misc Demo.unity -------------------------------------------------------------------------------- /Demo/Misc Demo.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Misc Demo.unity.meta -------------------------------------------------------------------------------- /Demo/Misc Demo/LightingData.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Misc Demo/LightingData.asset -------------------------------------------------------------------------------- /Demo/Misc Demo/LightingData.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Misc Demo/LightingData.asset.meta -------------------------------------------------------------------------------- /Demo/Misc Demo/Lightmap-0_comp_light.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Misc Demo/Lightmap-0_comp_light.exr -------------------------------------------------------------------------------- /Demo/Misc Demo/Lightmap-0_comp_light.exr.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Misc Demo/Lightmap-0_comp_light.exr.meta -------------------------------------------------------------------------------- /Demo/Misc Demo/Lightmap-1_comp_light.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Misc Demo/Lightmap-1_comp_light.exr -------------------------------------------------------------------------------- /Demo/Misc Demo/Lightmap-1_comp_light.exr.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Misc Demo/Lightmap-1_comp_light.exr.meta -------------------------------------------------------------------------------- /Demo/Misc Demo/Lightmap-2_comp_light.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Misc Demo/Lightmap-2_comp_light.exr -------------------------------------------------------------------------------- /Demo/Misc Demo/Lightmap-2_comp_light.exr.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Misc Demo/Lightmap-2_comp_light.exr.meta -------------------------------------------------------------------------------- /Demo/Misc Demo/Lightmap-3_comp_light.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Misc Demo/Lightmap-3_comp_light.exr -------------------------------------------------------------------------------- /Demo/Misc Demo/Lightmap-3_comp_light.exr.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Misc Demo/Lightmap-3_comp_light.exr.meta -------------------------------------------------------------------------------- /Demo/Misc Demo/Lightmap-4_comp_light.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Misc Demo/Lightmap-4_comp_light.exr -------------------------------------------------------------------------------- /Demo/Misc Demo/Lightmap-4_comp_light.exr.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Misc Demo/Lightmap-4_comp_light.exr.meta -------------------------------------------------------------------------------- /Demo/Misc Demo/ReflectionProbe-0.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Misc Demo/ReflectionProbe-0.exr -------------------------------------------------------------------------------- /Demo/Misc Demo/ReflectionProbe-0.exr.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Misc Demo/ReflectionProbe-0.exr.meta -------------------------------------------------------------------------------- /Demo/Misc Demo/ReflectionProbe-1.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Misc Demo/ReflectionProbe-1.exr -------------------------------------------------------------------------------- /Demo/Misc Demo/ReflectionProbe-1.exr.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Misc Demo/ReflectionProbe-1.exr.meta -------------------------------------------------------------------------------- /Demo/Misc Demo_Profiles.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Misc Demo_Profiles.meta -------------------------------------------------------------------------------- /Demo/Misc Demo_Profiles/PP Profile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Misc Demo_Profiles/PP Profile.asset -------------------------------------------------------------------------------- /Demo/Misc Demo_Profiles/PP Profile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Misc Demo_Profiles/PP Profile.asset.meta -------------------------------------------------------------------------------- /Demo/Presentation System Demo.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Presentation System Demo.unity -------------------------------------------------------------------------------- /Demo/Presentation System Demo.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Presentation System Demo.unity.meta -------------------------------------------------------------------------------- /Demo/Shader Feeder Demo.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Shader Feeder Demo.unity -------------------------------------------------------------------------------- /Demo/Shader Feeder Demo.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Demo/Shader Feeder Demo.unity.meta -------------------------------------------------------------------------------- /Internals.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Internals.meta -------------------------------------------------------------------------------- /Internals/Attributes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 186bc2c5212b433b9842bb192630b4fd 3 | timeCreated: 1594662442 -------------------------------------------------------------------------------- /Internals/Attributes/UTAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Internals/Attributes/UTAttributes.cs -------------------------------------------------------------------------------- /Internals/Attributes/UTAttributes.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Internals/Attributes/UTAttributes.cs.meta -------------------------------------------------------------------------------- /Internals/Attributes/UTStyles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Internals/Attributes/UTStyles.cs -------------------------------------------------------------------------------- /Internals/Attributes/UTStyles.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Internals/Attributes/UTStyles.cs.meta -------------------------------------------------------------------------------- /Internals/Attributes/UTUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Internals/Attributes/UTUtils.cs -------------------------------------------------------------------------------- /Internals/Attributes/UTUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ba9ec1b26d4481eba240c429c42b7cf 3 | timeCreated: 1589337281 -------------------------------------------------------------------------------- /Internals/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Internals/Editor.meta -------------------------------------------------------------------------------- /Internals/Editor/UTEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Internals/Editor/UTEditor.cs -------------------------------------------------------------------------------- /Internals/Editor/UTEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Internals/Editor/UTEditor.cs.meta -------------------------------------------------------------------------------- /Internals/Editor/UTEditorArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Internals/Editor/UTEditorArray.cs -------------------------------------------------------------------------------- /Internals/Editor/UTEditorArray.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48478555b7a54ff1901131eaf098833f 3 | timeCreated: 1610747255 -------------------------------------------------------------------------------- /Internals/Editor/UTEditorFieldHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Internals/Editor/UTEditorFieldHandling.cs -------------------------------------------------------------------------------- /Internals/Editor/UTEditorFieldHandling.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 51a7e6e5b45445e7b654af0684cce1c9 3 | timeCreated: 1614144359 -------------------------------------------------------------------------------- /Internals/Editor/UTEditorLegacy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Internals/Editor/UTEditorLegacy.cs -------------------------------------------------------------------------------- /Internals/Editor/UTEditorLegacy.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Internals/Editor/UTEditorLegacy.cs.meta -------------------------------------------------------------------------------- /Internals/Editor/UTListViewHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Internals/Editor/UTListViewHandler.cs -------------------------------------------------------------------------------- /Internals/Editor/UTListViewHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1bd5fa7c11d84a0fadf4f8c90cad71af 3 | timeCreated: 1614290012 -------------------------------------------------------------------------------- /Internals/Editor/UTReorderable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Internals/Editor/UTReorderable.cs -------------------------------------------------------------------------------- /Internals/Editor/UTReorderable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 99b69ff7495f40fab1af258e7e603282 3 | timeCreated: 1590975226 -------------------------------------------------------------------------------- /Internals/Editor/UTStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Internals/Editor/UTStartup.cs -------------------------------------------------------------------------------- /Internals/Editor/UTStartup.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf323de4d64a473184d401b0cd4b46d9 3 | timeCreated: 1595900692 -------------------------------------------------------------------------------- /Internals/Editor/UdonToolkitEditor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Internals/Editor/UdonToolkitEditor.asmdef -------------------------------------------------------------------------------- /Internals/Editor/UdonToolkitEditor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f253815156df439380cb4780773d184b 3 | timeCreated: 1615580507 -------------------------------------------------------------------------------- /Internals/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Internals/Resources.meta -------------------------------------------------------------------------------- /Internals/Resources/Arrow_L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Internals/Resources/Arrow_L.png -------------------------------------------------------------------------------- /Internals/Resources/Arrow_L.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Internals/Resources/Arrow_L.png.meta -------------------------------------------------------------------------------- /Internals/Resources/Arrow_R.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Internals/Resources/Arrow_R.png -------------------------------------------------------------------------------- /Internals/Resources/Arrow_R.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Internals/Resources/Arrow_R.png.meta -------------------------------------------------------------------------------- /Internals/Resources/Component BG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Internals/Resources/Component BG.png -------------------------------------------------------------------------------- /Internals/Resources/Component BG.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Internals/Resources/Component BG.png.meta -------------------------------------------------------------------------------- /Internals/Resources/FredokaOne-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Internals/Resources/FredokaOne-Regular.ttf -------------------------------------------------------------------------------- /Internals/Resources/FredokaOne-Regular.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Internals/Resources/FredokaOne-Regular.ttf.meta -------------------------------------------------------------------------------- /Internals/Resources/Nunito-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Internals/Resources/Nunito-SemiBold.ttf -------------------------------------------------------------------------------- /Internals/Resources/Nunito-SemiBold.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Internals/Resources/Nunito-SemiBold.ttf.meta -------------------------------------------------------------------------------- /Internals/Resources/USharpTemplate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Internals/Resources/USharpTemplate.txt -------------------------------------------------------------------------------- /Internals/Resources/USharpTemplate.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Internals/Resources/USharpTemplate.txt.meta -------------------------------------------------------------------------------- /Internals/Resources/Undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Internals/Resources/Undo.png -------------------------------------------------------------------------------- /Internals/Resources/Undo.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Internals/Resources/Undo.png.meta -------------------------------------------------------------------------------- /Internals/Resources/Utils.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Internals/Resources/Utils.png -------------------------------------------------------------------------------- /Internals/Resources/Utils.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Internals/Resources/Utils.png.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/LICENSE.meta -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/README.md -------------------------------------------------------------------------------- /README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/README.md.meta -------------------------------------------------------------------------------- /Systems.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems.meta -------------------------------------------------------------------------------- /Systems/Flight System.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Flight System.meta -------------------------------------------------------------------------------- /Systems/Flight System/Boost Gate.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Flight System/Boost Gate.prefab -------------------------------------------------------------------------------- /Systems/Flight System/Boost Gate.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Flight System/Boost Gate.prefab.meta -------------------------------------------------------------------------------- /Systems/Flight System/Flight Restriction Zone.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Flight System/Flight Restriction Zone.prefab -------------------------------------------------------------------------------- /Systems/Flight System/Flight Restriction Zone.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Flight System/Flight Restriction Zone.prefab.meta -------------------------------------------------------------------------------- /Systems/Flight System/Flight System Debugger C# Program Asset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Flight System/Flight System Debugger C# Program Asset.asset -------------------------------------------------------------------------------- /Systems/Flight System/Flight System Debugger C# Program Asset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Flight System/Flight System Debugger C# Program Asset.asset.meta -------------------------------------------------------------------------------- /Systems/Flight System/Flight System Debugger.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Flight System/Flight System Debugger.prefab -------------------------------------------------------------------------------- /Systems/Flight System/Flight System Debugger.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Flight System/Flight System Debugger.prefab.meta -------------------------------------------------------------------------------- /Systems/Flight System/Flight System Udon C# Program Asset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Flight System/Flight System Udon C# Program Asset.asset -------------------------------------------------------------------------------- /Systems/Flight System/Flight System Udon C# Program Asset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Flight System/Flight System Udon C# Program Asset.asset.meta -------------------------------------------------------------------------------- /Systems/Flight System/Flight System.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Flight System/Flight System.prefab -------------------------------------------------------------------------------- /Systems/Flight System/Flight System.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Flight System/Flight System.prefab.meta -------------------------------------------------------------------------------- /Systems/Flight System/FlightSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Flight System/FlightSystem.cs -------------------------------------------------------------------------------- /Systems/Flight System/FlightSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Flight System/FlightSystem.cs.meta -------------------------------------------------------------------------------- /Systems/Flight System/FlightSystemDebugger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Flight System/FlightSystemDebugger.cs -------------------------------------------------------------------------------- /Systems/Flight System/FlightSystemDebugger.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Flight System/FlightSystemDebugger.cs.meta -------------------------------------------------------------------------------- /Systems/Flight System/FlightSystemDemoSettings.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Flight System/FlightSystemDemoSettings.preset -------------------------------------------------------------------------------- /Systems/Flight System/FlightSystemDemoSettings.preset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Flight System/FlightSystemDemoSettings.preset.meta -------------------------------------------------------------------------------- /Systems/Presentation System.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System.meta -------------------------------------------------------------------------------- /Systems/Presentation System/Assets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Assets.meta -------------------------------------------------------------------------------- /Systems/Presentation System/Assets/Laser Dot.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Assets/Laser Dot.shader -------------------------------------------------------------------------------- /Systems/Presentation System/Assets/Laser Dot.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Assets/Laser Dot.shader.meta -------------------------------------------------------------------------------- /Systems/Presentation System/Assets/Laser Line.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Assets/Laser Line.shader -------------------------------------------------------------------------------- /Systems/Presentation System/Assets/Laser Line.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Assets/Laser Line.shader.meta -------------------------------------------------------------------------------- /Systems/Presentation System/Assets/Laser Pointer.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Assets/Laser Pointer.fbx -------------------------------------------------------------------------------- /Systems/Presentation System/Assets/Laser Pointer.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Assets/Laser Pointer.fbx.meta -------------------------------------------------------------------------------- /Systems/Presentation System/Assets/Lato-Regular SDF.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Assets/Lato-Regular SDF.asset -------------------------------------------------------------------------------- /Systems/Presentation System/Assets/Lato-Regular SDF.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Assets/Lato-Regular SDF.asset.meta -------------------------------------------------------------------------------- /Systems/Presentation System/Assets/Personal Screen.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Assets/Personal Screen.fbx -------------------------------------------------------------------------------- /Systems/Presentation System/Assets/Personal Screen.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Assets/Personal Screen.fbx.meta -------------------------------------------------------------------------------- /Systems/Presentation System/Assets/Stream Active.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Assets/Stream Active.anim -------------------------------------------------------------------------------- /Systems/Presentation System/Assets/Stream Active.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Assets/Stream Active.anim.meta -------------------------------------------------------------------------------- /Systems/Presentation System/Assets/Stream Controller.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Assets/Stream Controller.controller -------------------------------------------------------------------------------- /Systems/Presentation System/Assets/Stream Controller.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Assets/Stream Controller.controller.meta -------------------------------------------------------------------------------- /Systems/Presentation System/Assets/Stream Idle.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Assets/Stream Idle.anim -------------------------------------------------------------------------------- /Systems/Presentation System/Assets/Stream Idle.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Assets/Stream Idle.anim.meta -------------------------------------------------------------------------------- /Systems/Presentation System/Assets/Streamer Spot Walls.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Assets/Streamer Spot Walls.fbx -------------------------------------------------------------------------------- /Systems/Presentation System/Assets/Streamer Spot Walls.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Assets/Streamer Spot Walls.fbx.meta -------------------------------------------------------------------------------- /Systems/Presentation System/LaserPointer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/LaserPointer.cs -------------------------------------------------------------------------------- /Systems/Presentation System/LaserPointer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/LaserPointer.cs.meta -------------------------------------------------------------------------------- /Systems/Presentation System/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Materials.meta -------------------------------------------------------------------------------- /Systems/Presentation System/Materials/Grey.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Materials/Grey.mat -------------------------------------------------------------------------------- /Systems/Presentation System/Materials/Grey.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Materials/Grey.mat.meta -------------------------------------------------------------------------------- /Systems/Presentation System/Materials/Laser Dot.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Materials/Laser Dot.mat -------------------------------------------------------------------------------- /Systems/Presentation System/Materials/Laser Dot.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Materials/Laser Dot.mat.meta -------------------------------------------------------------------------------- /Systems/Presentation System/Materials/Laser Line.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Materials/Laser Line.mat -------------------------------------------------------------------------------- /Systems/Presentation System/Materials/Laser Line.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Materials/Laser Line.mat.meta -------------------------------------------------------------------------------- /Systems/Presentation System/Materials/Metal Shiny Color.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Materials/Metal Shiny Color.mat -------------------------------------------------------------------------------- /Systems/Presentation System/Materials/Metal Shiny Color.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Materials/Metal Shiny Color.mat.meta -------------------------------------------------------------------------------- /Systems/Presentation System/Materials/Presentation Lookahead.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Materials/Presentation Lookahead.mat -------------------------------------------------------------------------------- /Systems/Presentation System/Materials/Presentation Lookahead.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Materials/Presentation Lookahead.mat.meta -------------------------------------------------------------------------------- /Systems/Presentation System/Materials/Presentation Lookahead.renderTexture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Materials/Presentation Lookahead.renderTexture -------------------------------------------------------------------------------- /Systems/Presentation System/Materials/Presentation Lookahead.renderTexture.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Materials/Presentation Lookahead.renderTexture.meta -------------------------------------------------------------------------------- /Systems/Presentation System/Materials/Presentation Placeholder.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Materials/Presentation Placeholder.mat -------------------------------------------------------------------------------- /Systems/Presentation System/Materials/Presentation Placeholder.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Materials/Presentation Placeholder.mat.meta -------------------------------------------------------------------------------- /Systems/Presentation System/Materials/Presentation Screeen.renderTexture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Materials/Presentation Screeen.renderTexture -------------------------------------------------------------------------------- /Systems/Presentation System/Materials/Presentation Screeen.renderTexture.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Materials/Presentation Screeen.renderTexture.meta -------------------------------------------------------------------------------- /Systems/Presentation System/Materials/Presentation Screen.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Materials/Presentation Screen.mat -------------------------------------------------------------------------------- /Systems/Presentation System/Materials/Presentation Screen.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Materials/Presentation Screen.mat.meta -------------------------------------------------------------------------------- /Systems/Presentation System/Materials/Presentation Stream.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Materials/Presentation Stream.mat -------------------------------------------------------------------------------- /Systems/Presentation System/Materials/Presentation Stream.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Materials/Presentation Stream.mat.meta -------------------------------------------------------------------------------- /Systems/Presentation System/Materials/Presentation Stream.renderTexture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Materials/Presentation Stream.renderTexture -------------------------------------------------------------------------------- /Systems/Presentation System/Materials/Presentation Stream.renderTexture.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Materials/Presentation Stream.renderTexture.meta -------------------------------------------------------------------------------- /Systems/Presentation System/Materials/Speaker Camera.renderTexture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Materials/Speaker Camera.renderTexture -------------------------------------------------------------------------------- /Systems/Presentation System/Materials/Speaker Camera.renderTexture.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Materials/Speaker Camera.renderTexture.meta -------------------------------------------------------------------------------- /Systems/Presentation System/Presentation System.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Presentation System.prefab -------------------------------------------------------------------------------- /Systems/Presentation System/Presentation System.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Presentation System.prefab.meta -------------------------------------------------------------------------------- /Systems/Presentation System/PresentationCameraTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/PresentationCameraTarget.cs -------------------------------------------------------------------------------- /Systems/Presentation System/PresentationCameraTarget.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/PresentationCameraTarget.cs.meta -------------------------------------------------------------------------------- /Systems/Presentation System/PresentationPersonalScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/PresentationPersonalScreen.cs -------------------------------------------------------------------------------- /Systems/Presentation System/PresentationPersonalScreen.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/PresentationPersonalScreen.cs.meta -------------------------------------------------------------------------------- /Systems/Presentation System/PresentationPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/PresentationPlayer.cs -------------------------------------------------------------------------------- /Systems/Presentation System/PresentationPlayer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/PresentationPlayer.cs.meta -------------------------------------------------------------------------------- /Systems/Presentation System/PresentationScreenController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/PresentationScreenController.cs -------------------------------------------------------------------------------- /Systems/Presentation System/PresentationScreenController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/PresentationScreenController.cs.meta -------------------------------------------------------------------------------- /Systems/Presentation System/PresentationStreamController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/PresentationStreamController.cs -------------------------------------------------------------------------------- /Systems/Presentation System/PresentationStreamController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/PresentationStreamController.cs.meta -------------------------------------------------------------------------------- /Systems/Presentation System/PresentationTalk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/PresentationTalk.cs -------------------------------------------------------------------------------- /Systems/Presentation System/PresentationTalk.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/PresentationTalk.cs.meta -------------------------------------------------------------------------------- /Systems/Presentation System/PresentationUIController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/PresentationUIController.cs -------------------------------------------------------------------------------- /Systems/Presentation System/PresentationUIController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/PresentationUIController.cs.meta -------------------------------------------------------------------------------- /Systems/Presentation System/PresentationVideoPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/PresentationVideoPlayer.cs -------------------------------------------------------------------------------- /Systems/Presentation System/PresentationVideoPlayer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/PresentationVideoPlayer.cs.meta -------------------------------------------------------------------------------- /Systems/Presentation System/PresentationVoiceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/PresentationVoiceController.cs -------------------------------------------------------------------------------- /Systems/Presentation System/PresentationVoiceController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/PresentationVoiceController.cs.meta -------------------------------------------------------------------------------- /Systems/Presentation System/PresentationVoiceZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/PresentationVoiceZone.cs -------------------------------------------------------------------------------- /Systems/Presentation System/PresentationVoiceZone.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/PresentationVoiceZone.cs.meta -------------------------------------------------------------------------------- /Systems/Presentation System/Program Assets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Program Assets.meta -------------------------------------------------------------------------------- /Systems/Presentation System/Program Assets/Laser Pointer Udon C# Program Asset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Program Assets/Laser Pointer Udon C# Program Asset.asset -------------------------------------------------------------------------------- /Systems/Presentation System/Program Assets/Laser Pointer Udon C# Program Asset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Program Assets/Laser Pointer Udon C# Program Asset.asset.meta -------------------------------------------------------------------------------- /Systems/Presentation System/Program Assets/Presentation Camera Target Udon C# Program Asset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Program Assets/Presentation Camera Target Udon C# Program Asset.asset -------------------------------------------------------------------------------- /Systems/Presentation System/Program Assets/Presentation Camera Target Udon C# Program Asset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Program Assets/Presentation Camera Target Udon C# Program Asset.asset.meta -------------------------------------------------------------------------------- /Systems/Presentation System/Program Assets/Presentation Personal Screen Udon C# Program Asset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Program Assets/Presentation Personal Screen Udon C# Program Asset.asset -------------------------------------------------------------------------------- /Systems/Presentation System/Program Assets/Presentation Personal Screen Udon C# Program Asset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Program Assets/Presentation Personal Screen Udon C# Program Asset.asset.meta -------------------------------------------------------------------------------- /Systems/Presentation System/Program Assets/Presentation Player Udon C# Program Asset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Program Assets/Presentation Player Udon C# Program Asset.asset -------------------------------------------------------------------------------- /Systems/Presentation System/Program Assets/Presentation Player Udon C# Program Asset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Program Assets/Presentation Player Udon C# Program Asset.asset.meta -------------------------------------------------------------------------------- /Systems/Presentation System/Program Assets/Presentation Screen Controller Udon C# Program Asset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Program Assets/Presentation Screen Controller Udon C# Program Asset.asset -------------------------------------------------------------------------------- /Systems/Presentation System/Program Assets/Presentation Screen Controller Udon C# Program Asset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Program Assets/Presentation Screen Controller Udon C# Program Asset.asset.meta -------------------------------------------------------------------------------- /Systems/Presentation System/Program Assets/Presentation Stream Controller Udon C# Program Asset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Program Assets/Presentation Stream Controller Udon C# Program Asset.asset -------------------------------------------------------------------------------- /Systems/Presentation System/Program Assets/Presentation Stream Controller Udon C# Program Asset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Program Assets/Presentation Stream Controller Udon C# Program Asset.asset.meta -------------------------------------------------------------------------------- /Systems/Presentation System/Program Assets/Presentation Talk Udon C# Program Asset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Program Assets/Presentation Talk Udon C# Program Asset.asset -------------------------------------------------------------------------------- /Systems/Presentation System/Program Assets/Presentation Talk Udon C# Program Asset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Program Assets/Presentation Talk Udon C# Program Asset.asset.meta -------------------------------------------------------------------------------- /Systems/Presentation System/Program Assets/Presentation UI Controller Udon C# Program Asset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Program Assets/Presentation UI Controller Udon C# Program Asset.asset -------------------------------------------------------------------------------- /Systems/Presentation System/Program Assets/Presentation UI Controller Udon C# Program Asset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Program Assets/Presentation UI Controller Udon C# Program Asset.asset.meta -------------------------------------------------------------------------------- /Systems/Presentation System/Program Assets/Presentation Voice Controller Udon C# Program Asset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Program Assets/Presentation Voice Controller Udon C# Program Asset.asset -------------------------------------------------------------------------------- /Systems/Presentation System/Program Assets/Presentation Voice Controller Udon C# Program Asset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Program Assets/Presentation Voice Controller Udon C# Program Asset.asset.meta -------------------------------------------------------------------------------- /Systems/Presentation System/Program Assets/Presentation Voice Zone Udon C# Program Asset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Program Assets/Presentation Voice Zone Udon C# Program Asset.asset -------------------------------------------------------------------------------- /Systems/Presentation System/Program Assets/Presentation Voice Zone Udon C# Program Asset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Program Assets/Presentation Voice Zone Udon C# Program Asset.asset.meta -------------------------------------------------------------------------------- /Systems/Presentation System/Program Assets/PresentationVideoPlayer Udon C# Program Asset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Program Assets/PresentationVideoPlayer Udon C# Program Asset.asset -------------------------------------------------------------------------------- /Systems/Presentation System/Program Assets/PresentationVideoPlayer Udon C# Program Asset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Program Assets/PresentationVideoPlayer Udon C# Program Asset.asset.meta -------------------------------------------------------------------------------- /Systems/Presentation System/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Textures.meta -------------------------------------------------------------------------------- /Systems/Presentation System/Textures/Brushed Map Metal Combined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Textures/Brushed Map Metal Combined.png -------------------------------------------------------------------------------- /Systems/Presentation System/Textures/Brushed Map Metal Combined.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Textures/Brushed Map Metal Combined.png.meta -------------------------------------------------------------------------------- /Systems/Presentation System/Textures/PS Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Textures/PS Background.png -------------------------------------------------------------------------------- /Systems/Presentation System/Textures/PS Background.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Textures/PS Background.png.meta -------------------------------------------------------------------------------- /Systems/Presentation System/Textures/PS Branding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Textures/PS Branding.png -------------------------------------------------------------------------------- /Systems/Presentation System/Textures/PS Branding.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Textures/PS Branding.png.meta -------------------------------------------------------------------------------- /Systems/Presentation System/Textures/PS Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Textures/PS Logo.png -------------------------------------------------------------------------------- /Systems/Presentation System/Textures/PS Logo.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Textures/PS Logo.png.meta -------------------------------------------------------------------------------- /Systems/Presentation System/Textures/Presentation System Placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Textures/Presentation System Placeholder.png -------------------------------------------------------------------------------- /Systems/Presentation System/Textures/Presentation System Placeholder.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/Systems/Presentation System/Textures/Presentation System Placeholder.png.meta -------------------------------------------------------------------------------- /UdonToolkitRuntime.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/UdonToolkitRuntime.asmdef -------------------------------------------------------------------------------- /UdonToolkitRuntime.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80a8b162ac804404bae7b5fdc3041428 3 | timeCreated: 1615580427 -------------------------------------------------------------------------------- /UdonToolkitRuntime.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/UdonToolkitRuntime.asset -------------------------------------------------------------------------------- /UdonToolkitRuntime.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/UdonToolkitRuntime.asset.meta -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/package.json -------------------------------------------------------------------------------- /package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/package.json.meta -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | v1.2.0 2 | -------------------------------------------------------------------------------- /version.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orels1/UdonToolkit/HEAD/version.txt.meta --------------------------------------------------------------------------------