Last active
March 12, 2019 02:51
-
-
Save ronyx69/a5029e0369e45117285b113ffe1a6d48 to your computer and use it in GitHub Desktop.
Change the shader of a building 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/Buildings/Building/Default"); | |
var asset = ToolsModifierControl.toolController.m_editPrefabInfo as BuildingInfo; | |
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
How do I use this - I have the Modtools console running but I don't see a place where to paste it or load it from a file.