Version Update

1.3 Modification Instructions

  1. Fixed major issue with base values going to 0 by default

1.2 Modification Instructions

  1. Fixed a significant value modification bug in CommonStatRuntimeSO.

  2. Added ResetValue method for you to reset the value faster.

  3. Added more comments for your better understanding.

1.1 Modification Instructions

  1. Added Scene Reference Editor to debug your scriptable objects.

  2. modified the namespace. rGame->RGame.CommonStat You can modify the error report with the following text using RGame -> using RGame.CommonStat

  3. Modify the class name SoleObjectRuntimeValueSO -> CommonStatRuntimeSO To ensure proper usage, I used Obsolete as a tag and subclassed SoleObjectRuntimeValueSO to CommonStatRuntimeSO. These changes are made so that you can better remember the focus classes so that you can use them better. Apologies for the inconvenience!

[Obsolete("This class name is modified, please use CommonStatRuntimeSO", false)]
public class SoleObjectRuntimeValueSO : CommonStatRuntimeSO
{
    
}
  1. Optimized CommonStatRuntimeSO. Avoid problems encountered with initialization.

Last updated