mirror of
https://github.com/AnnulusGames/Alchemy.git
synced 2025-01-22 08:18:51 -05:00
Merge pull request #90 from moz-moz/fix/rect-offset-drawing
Fix display of RectOffset in inspector
This commit is contained in:
commit
e12798c8e6
@ -17,6 +17,8 @@ namespace Alchemy.Editor.Elements
|
||||
|
||||
switch (property.propertyType)
|
||||
{
|
||||
// NOTE: RectOffset is a generic property type, but it doesn't have a SerializeField. Instead, use PropertyField.
|
||||
case SerializedPropertyType.Generic when property.type == "RectOffset":
|
||||
default:
|
||||
element = new PropertyField(property);
|
||||
break;
|
||||
|
@ -2055,6 +2055,11 @@ MonoBehaviour:
|
||||
m_Script: {fileID: 11500000, guid: 10a01c03cb52744d29a15035954b9bd2, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
qux:
|
||||
m_Left: 1
|
||||
m_Right: 2
|
||||
m_Top: 3
|
||||
m_Bottom: 4
|
||||
foo: 0
|
||||
bar: {x: 0, y: 0, z: 0}
|
||||
baz: {fileID: 0}
|
||||
|
@ -5,6 +5,7 @@ namespace Alchemy.Samples
|
||||
{
|
||||
public class OrderSample : MonoBehaviour
|
||||
{
|
||||
[Order(3)] public RectOffset qux;
|
||||
[Order(2)] public float foo;
|
||||
[Order(1)] public Vector3 bar;
|
||||
[Order(0)] public GameObject baz;
|
||||
|
Loading…
Reference in New Issue
Block a user