├── .gitattributes ├── .gitignore ├── DynamicInteractableShader.asmdef ├── DynamicInteractableShader.asmdef.meta ├── LICENSE ├── LICENSE.meta ├── README.md ├── README.md.meta ├── Scripts.meta ├── Scripts ├── InteractionAgent.cs ├── InteractionAgent.cs.meta ├── ShaderInteractor.cs └── ShaderInteractor.cs.meta ├── Shader.meta ├── Shader ├── Examples.meta ├── Examples │ ├── DynamicInteractable_DistanceToAlbedo.shadergraph │ └── DynamicInteractable_DistanceToAlbedo.shadergraph.meta ├── GetNearestPosition.hlsl ├── GetNearestPosition.hlsl.meta ├── NearestPositionFromTexture.shadersubgraph └── NearestPositionFromTexture.shadersubgraph.meta ├── package.json └── package.json.meta /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umbrason/DynamicInteractableShader/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .vscode/settings.json 3 | -------------------------------------------------------------------------------- /DynamicInteractableShader.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umbrason/DynamicInteractableShader/HEAD/DynamicInteractableShader.asmdef -------------------------------------------------------------------------------- /DynamicInteractableShader.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umbrason/DynamicInteractableShader/HEAD/DynamicInteractableShader.asmdef.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umbrason/DynamicInteractableShader/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umbrason/DynamicInteractableShader/HEAD/LICENSE.meta -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umbrason/DynamicInteractableShader/HEAD/README.md -------------------------------------------------------------------------------- /README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umbrason/DynamicInteractableShader/HEAD/README.md.meta -------------------------------------------------------------------------------- /Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umbrason/DynamicInteractableShader/HEAD/Scripts.meta -------------------------------------------------------------------------------- /Scripts/InteractionAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umbrason/DynamicInteractableShader/HEAD/Scripts/InteractionAgent.cs -------------------------------------------------------------------------------- /Scripts/InteractionAgent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umbrason/DynamicInteractableShader/HEAD/Scripts/InteractionAgent.cs.meta -------------------------------------------------------------------------------- /Scripts/ShaderInteractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umbrason/DynamicInteractableShader/HEAD/Scripts/ShaderInteractor.cs -------------------------------------------------------------------------------- /Scripts/ShaderInteractor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umbrason/DynamicInteractableShader/HEAD/Scripts/ShaderInteractor.cs.meta -------------------------------------------------------------------------------- /Shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umbrason/DynamicInteractableShader/HEAD/Shader.meta -------------------------------------------------------------------------------- /Shader/Examples.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umbrason/DynamicInteractableShader/HEAD/Shader/Examples.meta -------------------------------------------------------------------------------- /Shader/Examples/DynamicInteractable_DistanceToAlbedo.shadergraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umbrason/DynamicInteractableShader/HEAD/Shader/Examples/DynamicInteractable_DistanceToAlbedo.shadergraph -------------------------------------------------------------------------------- /Shader/Examples/DynamicInteractable_DistanceToAlbedo.shadergraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umbrason/DynamicInteractableShader/HEAD/Shader/Examples/DynamicInteractable_DistanceToAlbedo.shadergraph.meta -------------------------------------------------------------------------------- /Shader/GetNearestPosition.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umbrason/DynamicInteractableShader/HEAD/Shader/GetNearestPosition.hlsl -------------------------------------------------------------------------------- /Shader/GetNearestPosition.hlsl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umbrason/DynamicInteractableShader/HEAD/Shader/GetNearestPosition.hlsl.meta -------------------------------------------------------------------------------- /Shader/NearestPositionFromTexture.shadersubgraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umbrason/DynamicInteractableShader/HEAD/Shader/NearestPositionFromTexture.shadersubgraph -------------------------------------------------------------------------------- /Shader/NearestPositionFromTexture.shadersubgraph.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umbrason/DynamicInteractableShader/HEAD/Shader/NearestPositionFromTexture.shadersubgraph.meta -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umbrason/DynamicInteractableShader/HEAD/package.json -------------------------------------------------------------------------------- /package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Umbrason/DynamicInteractableShader/HEAD/package.json.meta --------------------------------------------------------------------------------