feature-attributes #7
@ -6,16 +6,16 @@ public class EffectSO : ScriptableObject
|
||||
/// <summary>
|
||||
/// Additive change applied before multiplicative scaling.
|
||||
/// </summary>
|
||||
public long Base { get; private set; }
|
||||
public long Base;
|
||||
zephyr marked this conversation as resolved
Outdated
|
||||
/// <summary>
|
||||
/// Multiplicative scaling in units of hundredth of a percent.
|
||||
/// E.g., 625 permyriad is 6.25%.
|
||||
/// </summary>
|
||||
public long Permyriad { get; private set; }
|
||||
public long Permyriad;
|
||||
/// <summary>
|
||||
/// Additive change applied after multiplicative scaling.
|
||||
/// </summary>
|
||||
public long Flat { get; private set; }
|
||||
public long Flat;
|
||||
|
||||
/// <summary>
|
||||
/// Create a new attribute effect instance.
|
||||
|
Loading…
Reference in New Issue
Block a user
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.