Created
May 16, 2018 14:13
-
-
Save ronyx69/bd84159b66ca9cb70763247ddc69fbac to your computer and use it in GitHub Desktop.
Change the shader of a prop to Default in asset editor.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var shader = Shader.Find("Custom/Props/Prop/Default"); | |
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; | |
asset.m_requireHeightMap = false; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment