54 lines
623 B
C
54 lines
623 B
C
#include "ScriptableObject.h"
|
|
|
|
#define SplineCore
|
|
|
|
/*
|
|
|
|
<summary>
|
|
设置样条线类型
|
|
</summary>
|
|
<param name="mode">CatmullRom, BSpline, Bezier, Linear </param>
|
|
|
|
*/
|
|
#define SetType(mode)
|
|
|
|
/*
|
|
|
|
<summary>
|
|
设置采样类型
|
|
</summary>
|
|
<param name="mode">Default, Uniform, Optimized</param>
|
|
|
|
*/
|
|
#define SetSampleMode(mode)
|
|
|
|
/*
|
|
|
|
<summary>
|
|
闭环曲线
|
|
</summary>
|
|
|
|
*/
|
|
#define SetClose()
|
|
|
|
/*
|
|
|
|
<summary>
|
|
加载并加入新节点
|
|
</summary>
|
|
<param name="path">脚本位置</param>
|
|
|
|
*/
|
|
#define LoadNode(path)
|
|
|
|
/*
|
|
|
|
<summary>
|
|
加入已加载的节点
|
|
</summary>
|
|
<param name="path">脚本位置</param>
|
|
|
|
*/
|
|
#define AddNode(path)
|
|
|