blob: 7d4305d2f0d3d98a640b3fbd6b056a8e0dfc6694 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
using UnityEngine;
using System;
using System.Collections;
public class MB3_BoneWeightCopier : MonoBehaviour {
public GameObject inputGameObject;
public GameObject outputPrefab;
public float radius = .01f;
public SkinnedMeshRenderer seamMesh;
public string outputFolder;
}
|