Skip to content

Instantly share code, notes, and snippets.

@ronyx69
Last active April 6, 2018 09:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ronyx69/0fa4c20a170dfbd7c64fc2311b36a927 to your computer and use it in GitHub Desktop.
Save ronyx69/0fa4c20a170dfbd7c64fc2311b36a927 to your computer and use it in GitHub Desktop.
Changes the shader of a prop to additive in asset editor.
var shader = Shader.Find("Custom/Particles/Additive (Soft)");
var asset = ToolsModifierControl.toolController.m_editPrefabInfo as PropInfo;
if(asset.m_material != null) asset.m_material.shader = shader;
if(asset.m_lodMaterial != null) asset.m_lodMaterial.shader = shader;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment