导入leg插件,完成腿部动画
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"name": "AD_FimpoPropertyAttr",
|
||||
"references": [],
|
||||
"includePlatforms": [],
|
||||
"excludePlatforms": [],
|
||||
"allowUnsafeCode": false,
|
||||
"overrideReferences": false,
|
||||
"precompiledReferences": [],
|
||||
"autoReferenced": true,
|
||||
"defineConstraints": [],
|
||||
"versionDefines": [],
|
||||
"noEngineReferences": false
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 7fe40b228d32d4d4e9b1cf8eb73412fd
|
||||
AssemblyDefinitionImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,20 @@
|
||||
using UnityEngine;
|
||||
|
||||
public class FPD_FixedCurveWindowAttribute : PropertyAttribute
|
||||
{
|
||||
public float StartTime;
|
||||
public float EndTime;
|
||||
public float StartValue;
|
||||
public float EndValue;
|
||||
public Color Color;
|
||||
|
||||
public FPD_FixedCurveWindowAttribute(float startTime = 0f, float startValue = 0f, float endTime = 1f, float endValue = 1f, float r = 0f, float g = 1f, float b = 1f, float a = 1f)
|
||||
{
|
||||
StartTime = startTime;
|
||||
StartValue = startValue;
|
||||
EndTime = endTime;
|
||||
EndValue = endValue;
|
||||
Color = new Color(r, g, b, a);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b349c30d0d001754f8b13febb660e7eb
|
||||
timeCreated: 1554395276
|
||||
licenseType: Store
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,19 @@
|
||||
using UnityEngine;
|
||||
|
||||
public class FPD_HeaderAttribute : PropertyAttribute
|
||||
{
|
||||
public string HeaderText;
|
||||
public float UpperPadding;
|
||||
public float BottomPadding;
|
||||
public float Height;
|
||||
|
||||
public FPD_HeaderAttribute(string headerText, float upperPadding = 6f, float bottomPadding = 4f, int addHeight = 2)
|
||||
{
|
||||
HeaderText = headerText;
|
||||
UpperPadding = upperPadding;
|
||||
BottomPadding = bottomPadding;
|
||||
Height = addHeight;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 54520e97577b06e4c98c18a19acf3c89
|
||||
timeCreated: 1594666879
|
||||
licenseType: Store
|
||||
MonoImporter:
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,5 @@
|
||||
using UnityEngine;
|
||||
|
||||
public class FPD_LayersAttribute : PropertyAttribute
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ca3c1f2223926524b878c6f192fa3a86
|
||||
timeCreated: 1554395101
|
||||
licenseType: Store
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,31 @@
|
||||
using UnityEngine;
|
||||
|
||||
public class FPD_SuffixAttribute : PropertyAttribute
|
||||
{
|
||||
public readonly float Min;
|
||||
public readonly float Max;
|
||||
public readonly SuffixMode Mode;
|
||||
public readonly string Suffix;
|
||||
public readonly bool editableValue;
|
||||
public readonly int widerField = 0;
|
||||
|
||||
public enum SuffixMode
|
||||
{
|
||||
From0to100,
|
||||
PercentageUnclamped,
|
||||
FromMinToMax,
|
||||
FromMinToMaxRounded
|
||||
}
|
||||
|
||||
// °
|
||||
public FPD_SuffixAttribute(float min, float max, SuffixMode mode = SuffixMode.From0to100, string suffix = "%", bool editable = true, int wider = 0)
|
||||
{
|
||||
Min = min;
|
||||
Max = max;
|
||||
Mode = mode;
|
||||
Suffix = suffix;
|
||||
editableValue = editable;
|
||||
widerField = wider;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d9c4fe4a7f33f0e40bb408fcb0e1a2bf
|
||||
timeCreated: 1554395276
|
||||
licenseType: Store
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Reference in New Issue
Block a user