Skip to content

Instantly share code, notes, and snippets.

@musngikd
musngikd / FBX_Import.cs
Created August 13, 2014 18:21
Sets FBX Mesh Scale Factors to 1 when imported into Unity
// BatchRename.cs
// Sets FBX Mesh Scale Factors to 1 when imported into Unity
// Via Alan Thorn (TW: @thorn_alan)
using UnityEngine;
using UnityEditor;
using System.Collections;
/// <summary>
/// Sets FBX Mesh Scale Factor to 1
/// </summary>
@musngikd
musngikd / BatchRename.cs
Created August 13, 2014 18:09
Unity Editor extension that allows batch renaming for GameObjects in Hierarchy
// BatchRename.cs
// Unity Editor extension that allows batch renaming for GameObjects in Hierarchy
// Via Alan Thorn (TW: @thorn_alan)
using UnityEngine;
using UnityEditor;
using System.Collections;
public class BatchRename : ScriptableWizard {