├── .gitattributes ├── .gitignore ├── Assets ├── HDRP.meta ├── HDRP │ ├── DefaultSceneRoot.prefab │ ├── DefaultSceneRoot.prefab.meta │ ├── HDRenderPipelineAsset.asset │ ├── HDRenderPipelineAsset.asset.meta │ ├── Scene PostProcess Profile.asset │ ├── Scene PostProcess Profile.asset.meta │ ├── Sky and Fog Settings Profile.asset │ ├── Sky and Fog Settings Profile.asset.meta │ ├── VFXDefaultResources.asset │ └── VFXDefaultResources.asset.meta ├── Lightning.meta ├── Lightning │ ├── Floor.mat │ ├── Floor.mat.meta │ ├── Lightning.unity │ ├── Lightning.unity.meta │ ├── Lightning.vfx │ ├── Lightning.vfx.meta │ ├── Timeline.playable │ └── Timeline.playable.meta ├── Phaser.meta ├── Phaser │ ├── Cubes.vfx │ ├── Cubes.vfx.meta │ ├── Emit.signal │ ├── Emit.signal.meta │ ├── Phaser.unity │ ├── Phaser.unity.meta │ ├── Phaser.vfx │ ├── Phaser.vfx.meta │ ├── Timeline.playable │ ├── Timeline.playable.meta │ ├── WireQuad.shadergraph │ └── WireQuad.shadergraph.meta ├── Source.meta ├── Source │ ├── Color.renderTexture │ ├── Color.renderTexture.meta │ ├── Position.renderTexture │ ├── Position.renderTexture.meta │ ├── SourceA.Metadata.asset │ └── SourceA.Metadata.asset.meta ├── StreamingAssets.meta ├── StreamingAssets │ ├── SourceA.mov │ └── SourceA.mov.meta ├── Trails.meta ├── Trails │ ├── Bloom.asset │ ├── Bloom.asset.meta │ ├── Color.asset │ ├── Color.asset.meta │ ├── Scalines.vfx │ ├── Scalines.vfx.meta │ ├── Shadow.asset │ ├── Shadow.asset.meta │ ├── Timeline.playable │ ├── Timeline.playable.meta │ ├── Trails.unity │ ├── Trails.unity.meta │ ├── Trails.vfx │ └── Trails.vfx.meta ├── Whirlwind.meta └── Whirlwind │ ├── Motion.asset │ ├── Motion.asset.meta │ ├── Petal.obj │ ├── Petal.obj.meta │ ├── Timeline.playable │ ├── Timeline.playable.meta │ ├── Whirlwind.unity │ ├── Whirlwind.unity.meta │ ├── Whirlwind.vfx │ └── Whirlwind.vfx.meta ├── Packages └── manifest.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── HDRPProjectSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset └── XRSettings.asset └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/HDRP.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/HDRP.meta -------------------------------------------------------------------------------- /Assets/HDRP/DefaultSceneRoot.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/HDRP/DefaultSceneRoot.prefab -------------------------------------------------------------------------------- /Assets/HDRP/DefaultSceneRoot.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/HDRP/DefaultSceneRoot.prefab.meta -------------------------------------------------------------------------------- /Assets/HDRP/HDRenderPipelineAsset.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/HDRP/HDRenderPipelineAsset.asset -------------------------------------------------------------------------------- /Assets/HDRP/HDRenderPipelineAsset.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/HDRP/HDRenderPipelineAsset.asset.meta -------------------------------------------------------------------------------- /Assets/HDRP/Scene PostProcess Profile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/HDRP/Scene PostProcess Profile.asset -------------------------------------------------------------------------------- /Assets/HDRP/Scene PostProcess Profile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/HDRP/Scene PostProcess Profile.asset.meta -------------------------------------------------------------------------------- /Assets/HDRP/Sky and Fog Settings Profile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/HDRP/Sky and Fog Settings Profile.asset -------------------------------------------------------------------------------- /Assets/HDRP/Sky and Fog Settings Profile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/HDRP/Sky and Fog Settings Profile.asset.meta -------------------------------------------------------------------------------- /Assets/HDRP/VFXDefaultResources.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/HDRP/VFXDefaultResources.asset -------------------------------------------------------------------------------- /Assets/HDRP/VFXDefaultResources.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/HDRP/VFXDefaultResources.asset.meta -------------------------------------------------------------------------------- /Assets/Lightning.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Lightning.meta -------------------------------------------------------------------------------- /Assets/Lightning/Floor.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Lightning/Floor.mat -------------------------------------------------------------------------------- /Assets/Lightning/Floor.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Lightning/Floor.mat.meta -------------------------------------------------------------------------------- /Assets/Lightning/Lightning.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Lightning/Lightning.unity -------------------------------------------------------------------------------- /Assets/Lightning/Lightning.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Lightning/Lightning.unity.meta -------------------------------------------------------------------------------- /Assets/Lightning/Lightning.vfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Lightning/Lightning.vfx -------------------------------------------------------------------------------- /Assets/Lightning/Lightning.vfx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Lightning/Lightning.vfx.meta -------------------------------------------------------------------------------- /Assets/Lightning/Timeline.playable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Lightning/Timeline.playable -------------------------------------------------------------------------------- /Assets/Lightning/Timeline.playable.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Lightning/Timeline.playable.meta -------------------------------------------------------------------------------- /Assets/Phaser.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Phaser.meta -------------------------------------------------------------------------------- /Assets/Phaser/Cubes.vfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Phaser/Cubes.vfx -------------------------------------------------------------------------------- /Assets/Phaser/Cubes.vfx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Phaser/Cubes.vfx.meta -------------------------------------------------------------------------------- /Assets/Phaser/Emit.signal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Phaser/Emit.signal -------------------------------------------------------------------------------- /Assets/Phaser/Emit.signal.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Phaser/Emit.signal.meta -------------------------------------------------------------------------------- /Assets/Phaser/Phaser.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Phaser/Phaser.unity -------------------------------------------------------------------------------- /Assets/Phaser/Phaser.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Phaser/Phaser.unity.meta -------------------------------------------------------------------------------- /Assets/Phaser/Phaser.vfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Phaser/Phaser.vfx -------------------------------------------------------------------------------- /Assets/Phaser/Phaser.vfx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Phaser/Phaser.vfx.meta -------------------------------------------------------------------------------- /Assets/Phaser/Timeline.playable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Phaser/Timeline.playable -------------------------------------------------------------------------------- /Assets/Phaser/Timeline.playable.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Phaser/Timeline.playable.meta -------------------------------------------------------------------------------- /Assets/Phaser/WireQuad.shadergraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Phaser/WireQuad.shadergraph -------------------------------------------------------------------------------- /Assets/Phaser/WireQuad.shadergraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Phaser/WireQuad.shadergraph.meta -------------------------------------------------------------------------------- /Assets/Source.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Source.meta -------------------------------------------------------------------------------- /Assets/Source/Color.renderTexture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Source/Color.renderTexture -------------------------------------------------------------------------------- /Assets/Source/Color.renderTexture.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Source/Color.renderTexture.meta -------------------------------------------------------------------------------- /Assets/Source/Position.renderTexture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Source/Position.renderTexture -------------------------------------------------------------------------------- /Assets/Source/Position.renderTexture.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Source/Position.renderTexture.meta -------------------------------------------------------------------------------- /Assets/Source/SourceA.Metadata.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Source/SourceA.Metadata.asset -------------------------------------------------------------------------------- /Assets/Source/SourceA.Metadata.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Source/SourceA.Metadata.asset.meta -------------------------------------------------------------------------------- /Assets/StreamingAssets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/StreamingAssets.meta -------------------------------------------------------------------------------- /Assets/StreamingAssets/SourceA.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/StreamingAssets/SourceA.mov -------------------------------------------------------------------------------- /Assets/StreamingAssets/SourceA.mov.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/StreamingAssets/SourceA.mov.meta -------------------------------------------------------------------------------- /Assets/Trails.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Trails.meta -------------------------------------------------------------------------------- /Assets/Trails/Bloom.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Trails/Bloom.asset -------------------------------------------------------------------------------- /Assets/Trails/Bloom.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Trails/Bloom.asset.meta -------------------------------------------------------------------------------- /Assets/Trails/Color.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Trails/Color.asset -------------------------------------------------------------------------------- /Assets/Trails/Color.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Trails/Color.asset.meta -------------------------------------------------------------------------------- /Assets/Trails/Scalines.vfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Trails/Scalines.vfx -------------------------------------------------------------------------------- /Assets/Trails/Scalines.vfx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Trails/Scalines.vfx.meta -------------------------------------------------------------------------------- /Assets/Trails/Shadow.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Trails/Shadow.asset -------------------------------------------------------------------------------- /Assets/Trails/Shadow.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Trails/Shadow.asset.meta -------------------------------------------------------------------------------- /Assets/Trails/Timeline.playable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Trails/Timeline.playable -------------------------------------------------------------------------------- /Assets/Trails/Timeline.playable.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Trails/Timeline.playable.meta -------------------------------------------------------------------------------- /Assets/Trails/Trails.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Trails/Trails.unity -------------------------------------------------------------------------------- /Assets/Trails/Trails.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Trails/Trails.unity.meta -------------------------------------------------------------------------------- /Assets/Trails/Trails.vfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Trails/Trails.vfx -------------------------------------------------------------------------------- /Assets/Trails/Trails.vfx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Trails/Trails.vfx.meta -------------------------------------------------------------------------------- /Assets/Whirlwind.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Whirlwind.meta -------------------------------------------------------------------------------- /Assets/Whirlwind/Motion.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Whirlwind/Motion.asset -------------------------------------------------------------------------------- /Assets/Whirlwind/Motion.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Whirlwind/Motion.asset.meta -------------------------------------------------------------------------------- /Assets/Whirlwind/Petal.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Whirlwind/Petal.obj -------------------------------------------------------------------------------- /Assets/Whirlwind/Petal.obj.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Whirlwind/Petal.obj.meta -------------------------------------------------------------------------------- /Assets/Whirlwind/Timeline.playable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Whirlwind/Timeline.playable -------------------------------------------------------------------------------- /Assets/Whirlwind/Timeline.playable.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Whirlwind/Timeline.playable.meta -------------------------------------------------------------------------------- /Assets/Whirlwind/Whirlwind.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Whirlwind/Whirlwind.unity -------------------------------------------------------------------------------- /Assets/Whirlwind/Whirlwind.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Whirlwind/Whirlwind.unity.meta -------------------------------------------------------------------------------- /Assets/Whirlwind/Whirlwind.vfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Whirlwind/Whirlwind.vfx -------------------------------------------------------------------------------- /Assets/Whirlwind/Whirlwind.vfx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Assets/Whirlwind/Whirlwind.vfx.meta -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/HDRPProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/ProjectSettings/HDRPProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/DkvfxSketches/HEAD/README.md --------------------------------------------------------------------------------