├── .gitignore ├── Assets ├── PlasmaMaterial.mat ├── PlasmaMaterial.mat.meta ├── PlasmaSampleScene.unity ├── PlasmaSampleScene.unity.meta ├── PlasmaTexture.cs └── PlasmaTexture.cs.meta ├── Images └── Plasma.jpg ├── LICENSE.md ├── Packages ├── manifest.json └── packages-lock.json ├── ProjectSettings ├── AudioManager.asset ├── BurstAotSettings_StandaloneOSX.json ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── PackageManagerSettings.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset ├── VersionControlSettings.asset └── XRSettings.asset └── readme.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/UnityTextureAccessApiExamples/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/PlasmaMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/UnityTextureAccessApiExamples/HEAD/Assets/PlasmaMaterial.mat -------------------------------------------------------------------------------- /Assets/PlasmaMaterial.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/UnityTextureAccessApiExamples/HEAD/Assets/PlasmaMaterial.mat.meta -------------------------------------------------------------------------------- /Assets/PlasmaSampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/UnityTextureAccessApiExamples/HEAD/Assets/PlasmaSampleScene.unity -------------------------------------------------------------------------------- /Assets/PlasmaSampleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/UnityTextureAccessApiExamples/HEAD/Assets/PlasmaSampleScene.unity.meta -------------------------------------------------------------------------------- /Assets/PlasmaTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/UnityTextureAccessApiExamples/HEAD/Assets/PlasmaTexture.cs -------------------------------------------------------------------------------- /Assets/PlasmaTexture.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/UnityTextureAccessApiExamples/HEAD/Assets/PlasmaTexture.cs.meta -------------------------------------------------------------------------------- /Images/Plasma.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/UnityTextureAccessApiExamples/HEAD/Images/Plasma.jpg -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/UnityTextureAccessApiExamples/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/UnityTextureAccessApiExamples/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/UnityTextureAccessApiExamples/HEAD/Packages/packages-lock.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/UnityTextureAccessApiExamples/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/BurstAotSettings_StandaloneOSX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/UnityTextureAccessApiExamples/HEAD/ProjectSettings/BurstAotSettings_StandaloneOSX.json -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/UnityTextureAccessApiExamples/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/UnityTextureAccessApiExamples/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/UnityTextureAccessApiExamples/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/UnityTextureAccessApiExamples/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/UnityTextureAccessApiExamples/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/UnityTextureAccessApiExamples/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/UnityTextureAccessApiExamples/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/UnityTextureAccessApiExamples/HEAD/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/UnityTextureAccessApiExamples/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/UnityTextureAccessApiExamples/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/UnityTextureAccessApiExamples/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/UnityTextureAccessApiExamples/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/UnityTextureAccessApiExamples/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/UnityTextureAccessApiExamples/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/UnityTextureAccessApiExamples/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/UnityTextureAccessApiExamples/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/UnityTextureAccessApiExamples/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/UnityTextureAccessApiExamples/HEAD/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/UnityTextureAccessApiExamples/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/UnityTextureAccessApiExamples/HEAD/readme.md --------------------------------------------------------------------------------