feature-attributes #7
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "feature-attributes"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
@ -3,3 +3,3 @@
using UnityEngine;
public struct Attribute
public class Attribute : ScriptableObject
Missing SO suffix
I think this should go back to a struct rather than an SO. But it also seems like that makes it so the editor can't see them. Might need to implement a custom editor?
@ -0,0 +6,4 @@
/// <summary>
/// Additive change applied before multiplicative scaling.
/// </summary>
public long Base { get; private set; }
If we private set here is the editor able to set these values?
Tried some things. It looks like the editor can't set properties at all, only fields.
WIP: feature-attributesto feature-attributes