阶段性完成

This commit is contained in:
SoulliesOfficial
2025-12-08 05:27:53 -05:00
parent ef7b479712
commit f7af60351b
8770 changed files with 15637030 additions and 208354 deletions

View File

@@ -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);
}
}

View File

@@ -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:

View File

@@ -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;
}
}

View File

@@ -0,0 +1,12 @@
fileFormatVersion: 2
guid: 54520e97577b06e4c98c18a19acf3c89
timeCreated: 1594666879
licenseType: Store
MonoImporter:
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,5 @@
using UnityEngine;
public class FPD_LayersAttribute : PropertyAttribute
{
}

View File

@@ -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:

View File

@@ -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;
}
}

View File

@@ -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: