You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
328 B
C#
13 lines
328 B
C#
using UnityEngine;
|
|
#if UNITY_EDITOR
|
|
using UnityEngine.Formats.Alembic.Importer;
|
|
#endif
|
|
namespace FluffyGroomingTool {
|
|
public class AlembicSetupHelper : MonoBehaviour {
|
|
public GameObject sourceGameObject;
|
|
#if UNITY_EDITOR
|
|
public AlembicStreamPlayer alembicFile;
|
|
#endif
|
|
public bool dontSkin;
|
|
}
|
|
} |