├── Bakery ├── Baker.shader ├── Display.shader └── Util.cginc ├── CurveAnimGenerator.unitypackage ├── FlyingSystem.unitypackage ├── FuwaParticle.unitypackage ├── Particles ├── Debug.mat ├── Debug.mat.meta ├── ExtendBounds.asset ├── ExtendBounds.asset.meta ├── ExtendBounds.cs ├── ExtendBounds.cs.meta ├── ParticleUpdate.asset ├── ParticleUpdate.asset.meta ├── ParticleUpdate.cs ├── ParticleUpdate.cs.meta ├── Particles.cginc ├── Particles.cginc.meta ├── Quads.fbx ├── Quads.fbx.meta ├── Scene.unity ├── Scene.unity.meta ├── Update.mat ├── Update.mat.meta ├── Update.shader ├── Update.shader.meta ├── Visual.mat ├── Visual.mat.meta ├── Visual.shader └── Visual.shader.meta ├── README.md ├── SSR └── SSR.shader ├── ShaderLVExample ├── README.md ├── ShaderLVExample.unitypackage └── ShaderLVExample │ ├── LVUpdate.meta │ ├── LVUpdate │ ├── ShaderLVUpdate.asset │ ├── ShaderLVUpdate.asset.meta │ ├── ShaderLVUpdate.cs │ ├── ShaderLVUpdate.cs.meta │ ├── Volume.asset │ ├── Volume.asset.meta │ ├── VolumeUpdate.cginc │ ├── VolumeUpdate.cginc.meta │ ├── VolumeUpdate.mat │ ├── VolumeUpdate.mat.meta │ ├── VolumeUpdate.shader │ └── VolumeUpdate.shader.meta │ ├── Test.meta │ └── Test │ ├── Example.unity │ ├── Example.unity.meta │ ├── Test.mat │ ├── Test.mat.meta │ ├── Test.shader │ └── Test.shader.meta ├── SphereCam.unitypackage ├── TimelineWand_240511.unitypackage ├── hand_pointer.unitypackage ├── infinite_floor.unitypackage ├── mikoko_ik.unitypackage ├── ownerChecker.unitypackage ├── particles0925.unitypackage ├── phi_util ├── BasicCRT.shader ├── BasicParticle.shader ├── BasicSurface.shader ├── BasicUnlit.shader └── Util.cginc ├── rounded_trail.unitypackage ├── stuff ├── 20180402222533_1.jpg ├── 20180421002928_1.jpg ├── VRChat_1920x1080_2018-08-11_03-29-09.330.png ├── canvas_model.zip ├── curve.png ├── fly.png ├── infs.png ├── mk.png ├── pointer.png ├── screen_1920x1080_2018-04-05_21-04-44.775.png ├── skysphere_enc.html ├── tlwand.png └── trail.png ├── surface.shader ├── tilted_drink.unitypackage └── tilted_drink_v2.unitypackage /Bakery/Baker.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/Bakery/Baker.shader -------------------------------------------------------------------------------- /Bakery/Display.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/Bakery/Display.shader -------------------------------------------------------------------------------- /Bakery/Util.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/Bakery/Util.cginc -------------------------------------------------------------------------------- /CurveAnimGenerator.unitypackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/CurveAnimGenerator.unitypackage -------------------------------------------------------------------------------- /FlyingSystem.unitypackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/FlyingSystem.unitypackage -------------------------------------------------------------------------------- /FuwaParticle.unitypackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/FuwaParticle.unitypackage -------------------------------------------------------------------------------- /Particles/Debug.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/Particles/Debug.mat -------------------------------------------------------------------------------- /Particles/Debug.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/Particles/Debug.mat.meta -------------------------------------------------------------------------------- /Particles/ExtendBounds.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/Particles/ExtendBounds.asset -------------------------------------------------------------------------------- /Particles/ExtendBounds.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/Particles/ExtendBounds.asset.meta -------------------------------------------------------------------------------- /Particles/ExtendBounds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/Particles/ExtendBounds.cs -------------------------------------------------------------------------------- /Particles/ExtendBounds.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/Particles/ExtendBounds.cs.meta -------------------------------------------------------------------------------- /Particles/ParticleUpdate.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/Particles/ParticleUpdate.asset -------------------------------------------------------------------------------- /Particles/ParticleUpdate.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/Particles/ParticleUpdate.asset.meta -------------------------------------------------------------------------------- /Particles/ParticleUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/Particles/ParticleUpdate.cs -------------------------------------------------------------------------------- /Particles/ParticleUpdate.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/Particles/ParticleUpdate.cs.meta -------------------------------------------------------------------------------- /Particles/Particles.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/Particles/Particles.cginc -------------------------------------------------------------------------------- /Particles/Particles.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/Particles/Particles.cginc.meta -------------------------------------------------------------------------------- /Particles/Quads.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/Particles/Quads.fbx -------------------------------------------------------------------------------- /Particles/Quads.fbx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/Particles/Quads.fbx.meta -------------------------------------------------------------------------------- /Particles/Scene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/Particles/Scene.unity -------------------------------------------------------------------------------- /Particles/Scene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/Particles/Scene.unity.meta -------------------------------------------------------------------------------- /Particles/Update.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/Particles/Update.mat -------------------------------------------------------------------------------- /Particles/Update.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/Particles/Update.mat.meta -------------------------------------------------------------------------------- /Particles/Update.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/Particles/Update.shader -------------------------------------------------------------------------------- /Particles/Update.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/Particles/Update.shader.meta -------------------------------------------------------------------------------- /Particles/Visual.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/Particles/Visual.mat -------------------------------------------------------------------------------- /Particles/Visual.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/Particles/Visual.mat.meta -------------------------------------------------------------------------------- /Particles/Visual.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/Particles/Visual.shader -------------------------------------------------------------------------------- /Particles/Visual.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/Particles/Visual.shader.meta -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/README.md -------------------------------------------------------------------------------- /SSR/SSR.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/SSR/SSR.shader -------------------------------------------------------------------------------- /ShaderLVExample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/ShaderLVExample/README.md -------------------------------------------------------------------------------- /ShaderLVExample/ShaderLVExample.unitypackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/ShaderLVExample/ShaderLVExample.unitypackage -------------------------------------------------------------------------------- /ShaderLVExample/ShaderLVExample/LVUpdate.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/ShaderLVExample/ShaderLVExample/LVUpdate.meta -------------------------------------------------------------------------------- /ShaderLVExample/ShaderLVExample/LVUpdate/ShaderLVUpdate.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/ShaderLVExample/ShaderLVExample/LVUpdate/ShaderLVUpdate.asset -------------------------------------------------------------------------------- /ShaderLVExample/ShaderLVExample/LVUpdate/ShaderLVUpdate.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/ShaderLVExample/ShaderLVExample/LVUpdate/ShaderLVUpdate.asset.meta -------------------------------------------------------------------------------- /ShaderLVExample/ShaderLVExample/LVUpdate/ShaderLVUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/ShaderLVExample/ShaderLVExample/LVUpdate/ShaderLVUpdate.cs -------------------------------------------------------------------------------- /ShaderLVExample/ShaderLVExample/LVUpdate/ShaderLVUpdate.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/ShaderLVExample/ShaderLVExample/LVUpdate/ShaderLVUpdate.cs.meta -------------------------------------------------------------------------------- /ShaderLVExample/ShaderLVExample/LVUpdate/Volume.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/ShaderLVExample/ShaderLVExample/LVUpdate/Volume.asset -------------------------------------------------------------------------------- /ShaderLVExample/ShaderLVExample/LVUpdate/Volume.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/ShaderLVExample/ShaderLVExample/LVUpdate/Volume.asset.meta -------------------------------------------------------------------------------- /ShaderLVExample/ShaderLVExample/LVUpdate/VolumeUpdate.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/ShaderLVExample/ShaderLVExample/LVUpdate/VolumeUpdate.cginc -------------------------------------------------------------------------------- /ShaderLVExample/ShaderLVExample/LVUpdate/VolumeUpdate.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/ShaderLVExample/ShaderLVExample/LVUpdate/VolumeUpdate.cginc.meta -------------------------------------------------------------------------------- /ShaderLVExample/ShaderLVExample/LVUpdate/VolumeUpdate.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/ShaderLVExample/ShaderLVExample/LVUpdate/VolumeUpdate.mat -------------------------------------------------------------------------------- /ShaderLVExample/ShaderLVExample/LVUpdate/VolumeUpdate.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/ShaderLVExample/ShaderLVExample/LVUpdate/VolumeUpdate.mat.meta -------------------------------------------------------------------------------- /ShaderLVExample/ShaderLVExample/LVUpdate/VolumeUpdate.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/ShaderLVExample/ShaderLVExample/LVUpdate/VolumeUpdate.shader -------------------------------------------------------------------------------- /ShaderLVExample/ShaderLVExample/LVUpdate/VolumeUpdate.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/ShaderLVExample/ShaderLVExample/LVUpdate/VolumeUpdate.shader.meta -------------------------------------------------------------------------------- /ShaderLVExample/ShaderLVExample/Test.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/ShaderLVExample/ShaderLVExample/Test.meta -------------------------------------------------------------------------------- /ShaderLVExample/ShaderLVExample/Test/Example.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/ShaderLVExample/ShaderLVExample/Test/Example.unity -------------------------------------------------------------------------------- /ShaderLVExample/ShaderLVExample/Test/Example.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/ShaderLVExample/ShaderLVExample/Test/Example.unity.meta -------------------------------------------------------------------------------- /ShaderLVExample/ShaderLVExample/Test/Test.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/ShaderLVExample/ShaderLVExample/Test/Test.mat -------------------------------------------------------------------------------- /ShaderLVExample/ShaderLVExample/Test/Test.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/ShaderLVExample/ShaderLVExample/Test/Test.mat.meta -------------------------------------------------------------------------------- /ShaderLVExample/ShaderLVExample/Test/Test.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/ShaderLVExample/ShaderLVExample/Test/Test.shader -------------------------------------------------------------------------------- /ShaderLVExample/ShaderLVExample/Test/Test.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/ShaderLVExample/ShaderLVExample/Test/Test.shader.meta -------------------------------------------------------------------------------- /SphereCam.unitypackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/SphereCam.unitypackage -------------------------------------------------------------------------------- /TimelineWand_240511.unitypackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/TimelineWand_240511.unitypackage -------------------------------------------------------------------------------- /hand_pointer.unitypackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/hand_pointer.unitypackage -------------------------------------------------------------------------------- /infinite_floor.unitypackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/infinite_floor.unitypackage -------------------------------------------------------------------------------- /mikoko_ik.unitypackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/mikoko_ik.unitypackage -------------------------------------------------------------------------------- /ownerChecker.unitypackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/ownerChecker.unitypackage -------------------------------------------------------------------------------- /particles0925.unitypackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/particles0925.unitypackage -------------------------------------------------------------------------------- /phi_util/BasicCRT.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/phi_util/BasicCRT.shader -------------------------------------------------------------------------------- /phi_util/BasicParticle.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/phi_util/BasicParticle.shader -------------------------------------------------------------------------------- /phi_util/BasicSurface.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/phi_util/BasicSurface.shader -------------------------------------------------------------------------------- /phi_util/BasicUnlit.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/phi_util/BasicUnlit.shader -------------------------------------------------------------------------------- /phi_util/Util.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/phi_util/Util.cginc -------------------------------------------------------------------------------- /rounded_trail.unitypackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/rounded_trail.unitypackage -------------------------------------------------------------------------------- /stuff/20180402222533_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/stuff/20180402222533_1.jpg -------------------------------------------------------------------------------- /stuff/20180421002928_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/stuff/20180421002928_1.jpg -------------------------------------------------------------------------------- /stuff/VRChat_1920x1080_2018-08-11_03-29-09.330.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/stuff/VRChat_1920x1080_2018-08-11_03-29-09.330.png -------------------------------------------------------------------------------- /stuff/canvas_model.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/stuff/canvas_model.zip -------------------------------------------------------------------------------- /stuff/curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/stuff/curve.png -------------------------------------------------------------------------------- /stuff/fly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/stuff/fly.png -------------------------------------------------------------------------------- /stuff/infs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/stuff/infs.png -------------------------------------------------------------------------------- /stuff/mk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/stuff/mk.png -------------------------------------------------------------------------------- /stuff/pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/stuff/pointer.png -------------------------------------------------------------------------------- /stuff/screen_1920x1080_2018-04-05_21-04-44.775.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/stuff/screen_1920x1080_2018-04-05_21-04-44.775.png -------------------------------------------------------------------------------- /stuff/skysphere_enc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/stuff/skysphere_enc.html -------------------------------------------------------------------------------- /stuff/tlwand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/stuff/tlwand.png -------------------------------------------------------------------------------- /stuff/trail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/stuff/trail.png -------------------------------------------------------------------------------- /surface.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/surface.shader -------------------------------------------------------------------------------- /tilted_drink.unitypackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/tilted_drink.unitypackage -------------------------------------------------------------------------------- /tilted_drink_v2.unitypackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phi16/VRC_storage/HEAD/tilted_drink_v2.unitypackage --------------------------------------------------------------------------------