Skip to content

Commit c26f1cc

Browse files
committed
Add onCreatedGui callback at constructor.
1 parent 99ac6d6 commit c26f1cc

23 files changed

+107
-78
lines changed

Assets/PrefsUGUI/Examples/Scripts/Example.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,11 @@ public partial class Example : MonoBehaviour
2525
private PrefsEnum<TestEnum2> prefsEnum2 = new PrefsEnum<TestEnum2>("PrefsEnum2", TestEnum2.A, HierarchyTest2Ex2);
2626

2727
private PrefsRect prefsRect = new PrefsRect("PrefsRect", new Rect(0.25f, 0.5f, 1f, 2f));
28-
private PrefsLabel label = new PrefsLabel("PrefsLabel", "Label", HierarchyTest2Ex2, "");
28+
private PrefsLabel label = new PrefsLabel("PrefsLabel", "Label", HierarchyTest2Ex2, "", prefs =>
29+
{
30+
prefs.TopMargin = 15f;
31+
prefs.GuiLabelPrefix = RichTextColors.Blue("-");
32+
});
2933
#pragma warning restore 0414
3034

3135

Assets/PrefsUGUI/Scripts/Prefs/Abstracts/PrefsExtends.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@ public static partial class Prefs
99
[Serializable]
1010
public abstract class PrefsExtends<ValType, GuiType> : PrefsGuiConnector<ValType, GuiType> where GuiType : InputGuiValueBase<ValType>
1111
{
12-
public PrefsExtends(string key, ValType defaultValue = default(ValType), GuiHierarchy hierarchy = null, string guiLabel = null)
13-
: base(key, defaultValue, hierarchy, guiLabel)
12+
public PrefsExtends(string key, ValType defaultValue = default(ValType),
13+
GuiHierarchy hierarchy = null, string guiLabel = null, Action<PrefsGuiBaseConnector<ValType, GuiType>> onCreatedGui = null)
14+
: base(key, defaultValue, hierarchy, guiLabel, onCreatedGui)
1415
{
1516
;
1617
}

Assets/PrefsUGUI/Scripts/Prefs/Abstracts/PrefsGuiBaseConnector.cs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,14 @@ public virtual string GuiLabelSufix
5555
protected string guiLabelSufix = "";
5656

5757
protected GuiType gui = null;
58+
protected Action<PrefsGuiBaseConnector<ValType, GuiType>> onCreatedGui = null;
5859

5960

60-
public PrefsGuiBaseConnector(string key, ValType defaultValue = default(ValType), GuiHierarchy hierarchy = null, string guiLabel = null)
61+
public PrefsGuiBaseConnector(string key, ValType defaultValue = default(ValType),
62+
GuiHierarchy hierarchy = null, string guiLabel = null, Action<PrefsGuiBaseConnector<ValType, GuiType>> onCreatedGui = null)
6163
: base(key, defaultValue, hierarchy, guiLabel)
6264
{
65+
this.onCreatedGui = onCreatedGui;
6366
}
6467

6568
protected override void AfterRegist()
@@ -69,6 +72,8 @@ protected void ExecuteOnCreatedGui(GuiType gui)
6972
{
7073
this.gui = gui;
7174
this.OnCreatedGuiInternal(gui);
75+
this.onCreatedGui?.Invoke(this);
76+
7277
this.OnCreatedGui();
7378
}
7479

Assets/PrefsUGUI/Scripts/Prefs/Abstracts/PrefsGuiConnector.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@ public static partial class Prefs
99
[Serializable]
1010
public abstract class PrefsGuiConnector<ValType, GuiType> : PrefsGuiBaseConnector<ValType, GuiType> where GuiType : InputGuiValueBase<ValType>
1111
{
12-
public PrefsGuiConnector(string key, ValType defaultValue = default(ValType), GuiHierarchy hierarchy = null, string guiLabel = null)
13-
: base(key, defaultValue, hierarchy, guiLabel)
12+
public PrefsGuiConnector(string key, ValType defaultValue = default(ValType),
13+
GuiHierarchy hierarchy = null, string guiLabel = null, Action<PrefsGuiBaseConnector<ValType, GuiType>> onCreatedGui = null)
14+
: base(key, defaultValue, hierarchy, guiLabel, onCreatedGui)
1415
{
1516
}
1617

Assets/PrefsUGUI/Scripts/Prefs/PrefsBool.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@ namespace PrefsUGUI
77
[Serializable]
88
public class PrefsBool : Prefs.PrefsExtends<bool, PrefsGuiBool>
99
{
10-
public PrefsBool(string key, bool defaultValue = default(bool), GuiHierarchy hierarchy = null, string guiLabel = null)
11-
: base(key, defaultValue, hierarchy, guiLabel) { }
10+
public PrefsBool(string key, bool defaultValue = default(bool), GuiHierarchy hierarchy = null,
11+
string guiLabel = null, Action<Prefs.PrefsGuiBaseConnector<bool, PrefsGuiBool>> onCreatedGui = null)
12+
: base(key, defaultValue, hierarchy, guiLabel, onCreatedGui) { }
1213

1314
protected override void OnCreatedGuiInternal(PrefsGuiBool gui)
1415
{

Assets/PrefsUGUI/Scripts/Prefs/PrefsButton.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,9 @@ public UnityAction OnClicked
1414
set { this.Value = value; }
1515
}
1616

17-
public PrefsButton(string key, UnityAction action, GuiHierarchy hierarchy = null, string guiLabel = null)
18-
: base(key, action ?? delegate { }, hierarchy, guiLabel)
17+
public PrefsButton(string key, UnityAction action, GuiHierarchy hierarchy = null,
18+
string guiLabel = null, Action<Prefs.PrefsGuiBaseConnector<UnityAction, GuiButton>> onCreatedGui = null)
19+
: base(key, action ?? delegate { }, hierarchy, guiLabel, onCreatedGui)
1920
{
2021
}
2122

Assets/PrefsUGUI/Scripts/Prefs/PrefsColor.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ namespace PrefsUGUI
88
[Serializable]
99
public class PrefsColor : Prefs.PrefsExtends<Color, PrefsGuiColor>
1010
{
11-
public PrefsColor(string key, Color defaultValue = default(Color), GuiHierarchy hierarchy = null, string guiLabel = null)
12-
: base(key, defaultValue, hierarchy, guiLabel) { }
11+
public PrefsColor(string key, Color defaultValue = default(Color), GuiHierarchy hierarchy = null,
12+
string guiLabel = null, Action<Prefs.PrefsGuiBaseConnector<Color, PrefsGuiColor>> onCreatedGui = null)
13+
: base(key, defaultValue, hierarchy, guiLabel, onCreatedGui) { }
1314

1415
protected override void OnCreatedGuiInternal(PrefsGuiColor gui)
1516
{

Assets/PrefsUGUI/Scripts/Prefs/PrefsColorSlider.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ namespace PrefsUGUI
88
[Serializable]
99
public class PrefsColorSlider : Prefs.PrefsExtends<Color, PrefsGuiColorSlider>
1010
{
11-
public PrefsColorSlider(string key, Color defaultValue = default(Color), GuiHierarchy hierarchy = null, string guiLabel = null)
12-
: base(key, defaultValue, hierarchy, guiLabel) { }
11+
public PrefsColorSlider(string key, Color defaultValue = default(Color), GuiHierarchy hierarchy = null,
12+
string guiLabel = null, Action<Prefs.PrefsGuiBaseConnector<Color, PrefsGuiColorSlider>> onCreatedGui = null)
13+
: base(key, defaultValue, hierarchy, guiLabel, onCreatedGui) { }
1314

1415
protected override void OnCreatedGuiInternal(PrefsGuiColorSlider gui)
1516
{

Assets/PrefsUGUI/Scripts/Prefs/PrefsEnum.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ public class PrefsEnum<T> : Prefs.PrefsExtends<int, PrefsGuiEnum> where T : stru
1111

1212
protected Type enumType = null;
1313

14-
public PrefsEnum(string key, T defaultValue = default(T), GuiHierarchy hierarchy = null, string guiLabel = null)
15-
: base(key, 0, hierarchy, guiLabel)
14+
public PrefsEnum(string key, T defaultValue = default(T), GuiHierarchy hierarchy = null,
15+
string guiLabel = null, Action<Prefs.PrefsGuiBaseConnector<int, PrefsGuiEnum>> onCreatedGui = null)
16+
: base(key, 0, hierarchy, guiLabel, onCreatedGui)
1617
{
1718
var type = typeof(T);
1819
if(type.IsEnum == false)

Assets/PrefsUGUI/Scripts/Prefs/PrefsFloat.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@ namespace PrefsUGUI
77
[Serializable]
88
public class PrefsFloat : Prefs.PrefsExtends<float, PrefsGuiNumericDecimal>
99
{
10-
public PrefsFloat(string key, float defaultValue = default(float), GuiHierarchy hierarchy = null, string guiLabel = null)
11-
: base(key, defaultValue, hierarchy, guiLabel) { }
10+
public PrefsFloat(string key, float defaultValue = default(float), GuiHierarchy hierarchy = null,
11+
string guiLabel = null, Action<Prefs.PrefsGuiBaseConnector<float, PrefsGuiNumericDecimal>> onCreatedGui = null)
12+
: base(key, defaultValue, hierarchy, guiLabel, onCreatedGui) { }
1213

1314
protected override void OnCreatedGuiInternal(PrefsGuiNumericDecimal gui)
1415
{

Assets/PrefsUGUI/Scripts/Prefs/PrefsFloatSlider.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ public class PrefsFloatSlider : Prefs.PrefsExtends<float, PrefsGuiNumericSliderD
1111
protected float max = 0f;
1212

1313

14-
public PrefsFloatSlider(string key, float defaultValue = default(float), GuiHierarchy hierarchy = null, string guiLabel = null)
15-
: base(key, defaultValue, hierarchy, guiLabel) { }
14+
public PrefsFloatSlider(string key, float defaultValue = default(float), GuiHierarchy hierarchy = null,
15+
string guiLabel = null, Action<Prefs.PrefsGuiBaseConnector<float, PrefsGuiNumericSliderDecimal>> onCreatedGui = null)
16+
: base(key, defaultValue, hierarchy, guiLabel, onCreatedGui) { }
1617

1718
public PrefsFloatSlider(string key, float minValue, float maxValue,
1819
float defaultValue = default(float), GuiHierarchy hierarchy = null, string guiLabel = null)
Lines changed: 37 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,37 @@
1-
using System;
2-
using UnityEngine;
3-
using UnityEngine.UI;
4-
5-
namespace PrefsUGUI
6-
{
7-
using Guis.Prefs;
8-
9-
[Serializable]
10-
public class PrefsImageLabel : Prefs.PrefsGuiBaseConnector<string, PrefsGuiImageLabel>
11-
{
12-
public Texture Image
13-
{
14-
get { return this.gui?.GetImage(); }
15-
set { this.gui?.SetImage(value); }
16-
}
17-
18-
19-
public PrefsImageLabel(string key, string text, GuiHierarchy hierarchy = null, string guiLabel = null)
20-
: base(key, text ?? "", hierarchy, guiLabel)
21-
{
22-
}
23-
24-
public override void Reload(bool withEvent = true)
25-
=> this.ResetDefaultValue();
26-
27-
protected override void OnCreatedGuiInternal(PrefsGuiImageLabel gui)
28-
{
29-
gui.Initialize(this.GuiLabel, this.Get());
30-
this.OnValueChanged += () => gui.SetValue(this.Get());
31-
}
32-
33-
protected override void Regist()
34-
=> this.AfterRegist();
35-
}
36-
}
1+
using System;
2+
using UnityEngine;
3+
using UnityEngine.UI;
4+
5+
namespace PrefsUGUI
6+
{
7+
using Guis.Prefs;
8+
9+
[Serializable]
10+
public class PrefsImageLabel : Prefs.PrefsGuiBaseConnector<string, PrefsGuiImageLabel>
11+
{
12+
public Texture Image
13+
{
14+
get { return this.gui?.GetImage(); }
15+
set { this.gui?.SetImage(value); }
16+
}
17+
18+
19+
public PrefsImageLabel(string key, string text, GuiHierarchy hierarchy = null,
20+
string guiLabel = null, Action<Prefs.PrefsGuiBaseConnector<string, PrefsGuiImageLabel>> onCreatedGui = null)
21+
: base(key, text ?? "", hierarchy, guiLabel, onCreatedGui)
22+
{
23+
}
24+
25+
public override void Reload(bool withEvent = true)
26+
=> this.ResetDefaultValue();
27+
28+
protected override void OnCreatedGuiInternal(PrefsGuiImageLabel gui)
29+
{
30+
gui.Initialize(this.GuiLabel, this.Get());
31+
this.OnValueChanged += () => gui.SetValue(this.Get());
32+
}
33+
34+
protected override void Regist()
35+
=> this.AfterRegist();
36+
}
37+
}

Assets/PrefsUGUI/Scripts/Prefs/PrefsInt.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@ namespace PrefsUGUI
77
[Serializable]
88
public class PrefsInt : Prefs.PrefsExtends<int, PrefsGuiNumericInteger>
99
{
10-
public PrefsInt(string key, int defaultValue = default(int), GuiHierarchy hierarchy = null, string guiLabel = null)
11-
: base(key, defaultValue, hierarchy, guiLabel) { }
10+
public PrefsInt(string key, int defaultValue = default(int), GuiHierarchy hierarchy = null,
11+
string guiLabel = null, Action<Prefs.PrefsGuiBaseConnector<int, PrefsGuiNumericInteger>> onCreatedGui = null)
12+
: base(key, defaultValue, hierarchy, guiLabel, onCreatedGui) { }
1213

1314
protected override void OnCreatedGuiInternal(PrefsGuiNumericInteger gui)
1415
{

Assets/PrefsUGUI/Scripts/Prefs/PrefsIntSlider.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ public class PrefsIntSlider : Prefs.PrefsExtends<int, PrefsGuiNumericSliderInteg
1111
protected int max = 0;
1212

1313

14-
public PrefsIntSlider(string key, int defaultValue = default(int), GuiHierarchy hierarchy = null, string guiLabel = null)
15-
: base(key, defaultValue, hierarchy, guiLabel) { }
14+
public PrefsIntSlider(string key, int defaultValue = default(int), GuiHierarchy hierarchy = null,
15+
string guiLabel = null, Action<Prefs.PrefsGuiBaseConnector<int, PrefsGuiNumericSliderInteger>> onCreatedGui = null)
16+
: base(key, defaultValue, hierarchy, guiLabel, onCreatedGui) { }
1617

1718
public PrefsIntSlider(string key, int minValue, int maxValue,
1819
int defaultValue = default(int), GuiHierarchy hierarchy = null, string guiLabel = null)

Assets/PrefsUGUI/Scripts/Prefs/PrefsLabel.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@ namespace PrefsUGUI
77
[Serializable]
88
public class PrefsLabel : Prefs.PrefsGuiBaseConnector<string, PrefsGuiLabel>
99
{
10-
public PrefsLabel(string key, string text, GuiHierarchy hierarchy = null, string guiLabel = null)
11-
: base(key, text ?? "", hierarchy, guiLabel)
10+
public PrefsLabel(string key, string text, GuiHierarchy hierarchy = null,
11+
string guiLabel = null, Action<Prefs.PrefsGuiBaseConnector<string, PrefsGuiLabel>> onCreatedGui = null)
12+
: base(key, text ?? "", hierarchy, guiLabel, onCreatedGui)
1213
{
1314
}
1415

Assets/PrefsUGUI/Scripts/Prefs/PrefsRect.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ namespace PrefsUGUI
88
[Serializable]
99
public class PrefsRect : Prefs.PrefsExtends<Rect, PrefsGuiRect>
1010
{
11-
public PrefsRect(string key, Rect defaultValue = default(Rect), GuiHierarchy hierarchy = null, string guiLabel = null)
12-
: base(key, defaultValue, hierarchy, guiLabel) { }
11+
public PrefsRect(string key, Rect defaultValue = default(Rect), GuiHierarchy hierarchy = null,
12+
string guiLabel = null, Action<Prefs.PrefsGuiBaseConnector<Rect, PrefsGuiRect>> onCreatedGui = null)
13+
: base(key, defaultValue, hierarchy, guiLabel, onCreatedGui) { }
1314

1415
protected override void OnCreatedGuiInternal(PrefsGuiRect gui)
1516
=> gui.Initialize(this.GuiLabel, this.Get(), () => this.DefaultValue);

Assets/PrefsUGUI/Scripts/Prefs/PrefsString.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@ namespace PrefsUGUI
77
[Serializable]
88
public class PrefsString : Prefs.PrefsExtends<string, PrefsGuiString>
99
{
10-
public PrefsString(string key, string defaultValue = "", GuiHierarchy hierarchy = null, string guiLabel = null)
11-
: base(key, defaultValue, hierarchy, guiLabel) { }
10+
public PrefsString(string key, string defaultValue = "", GuiHierarchy hierarchy = null,
11+
string guiLabel = null, Action<Prefs.PrefsGuiBaseConnector<string, PrefsGuiString>> onCreatedGui = null)
12+
: base(key, defaultValue, hierarchy, guiLabel, onCreatedGui) { }
1213

1314
protected override void OnCreatedGuiInternal(PrefsGuiString gui)
1415
{

Assets/PrefsUGUI/Scripts/Prefs/PrefsVector2.cs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@ namespace PrefsUGUI
88
[Serializable]
99
public class PrefsVector2 : Prefs.PrefsExtends<Vector2, PrefsGuiVector2>
1010
{
11-
public PrefsVector2(string key, Vector2 defaultValue = default(Vector2), GuiHierarchy hierarchy = null, string guiLabel = null)
12-
: base(key, defaultValue, hierarchy, guiLabel) { }
13-
11+
public PrefsVector2(string key, Vector2 defaultValue = default(Vector2), GuiHierarchy hierarchy = null,
12+
string guiLabel = null, Action<Prefs.PrefsGuiBaseConnector<Vector2, PrefsGuiVector2>> onCreatedGui = null)
13+
: base(key, defaultValue, hierarchy, guiLabel, onCreatedGui) { }
14+
1415
protected override void OnCreatedGuiInternal(PrefsGuiVector2 gui)
1516
{
1617
gui.Initialize(this.GuiLabel, this.Get(), () => this.DefaultValue);

Assets/PrefsUGUI/Scripts/Prefs/PrefsVector2Int.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ namespace PrefsUGUI
88
[Serializable]
99
public class PrefsVector2Int : Prefs.PrefsExtends<Vector2Int, PrefsGuiVector2Int>
1010
{
11-
public PrefsVector2Int(string key, Vector2Int defaultValue = default(Vector2Int), GuiHierarchy hierarchy = null, string guiLabel = null)
12-
: base(key, defaultValue, hierarchy, guiLabel) { }
11+
public PrefsVector2Int(string key, Vector2Int defaultValue = default(Vector2Int), GuiHierarchy hierarchy = null,
12+
string guiLabel = null, Action<Prefs.PrefsGuiBaseConnector<Vector2Int, PrefsGuiVector2Int>> onCreatedGui = null)
13+
: base(key, defaultValue, hierarchy, guiLabel, onCreatedGui) { }
1314

1415
protected override void OnCreatedGuiInternal(PrefsGuiVector2Int gui)
1516
{

Assets/PrefsUGUI/Scripts/Prefs/PrefsVector3.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ namespace PrefsUGUI
88
[Serializable]
99
public class PrefsVector3 : Prefs.PrefsExtends<Vector3, PrefsGuiVector3>
1010
{
11-
public PrefsVector3(string key, Vector3 defaultValue = default(Vector3), GuiHierarchy hierarchy = null, string guiLabel = null)
12-
: base(key, defaultValue, hierarchy, guiLabel) { }
11+
public PrefsVector3(string key, Vector3 defaultValue = default(Vector3), GuiHierarchy hierarchy = null,
12+
string guiLabel = null, Action<Prefs.PrefsGuiBaseConnector<Vector3, PrefsGuiVector3>> onCreatedGui = null)
13+
: base(key, defaultValue, hierarchy, guiLabel, onCreatedGui) { }
1314

1415
protected override void OnCreatedGuiInternal(PrefsGuiVector3 gui)
1516
{

Assets/PrefsUGUI/Scripts/Prefs/PrefsVector3Int.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ namespace PrefsUGUI
88
[Serializable]
99
public class PrefsVector3Int : Prefs.PrefsExtends<Vector3Int, PrefsGuiVector3Int>
1010
{
11-
public PrefsVector3Int(string key, Vector3Int defaultValue = default(Vector3Int), GuiHierarchy hierarchy = null, string guiLabel = null)
12-
: base(key, defaultValue, hierarchy, guiLabel) { }
11+
public PrefsVector3Int(string key, Vector3Int defaultValue = default(Vector3Int), GuiHierarchy hierarchy = null,
12+
string guiLabel = null, Action<Prefs.PrefsGuiBaseConnector<Vector3Int, PrefsGuiVector3Int>> onCreatedGui = null)
13+
: base(key, defaultValue, hierarchy, guiLabel, onCreatedGui) { }
1314

1415
protected override void OnCreatedGuiInternal(PrefsGuiVector3Int gui)
1516
{

Assets/PrefsUGUI/Scripts/Prefs/PrefsVector4.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ namespace PrefsUGUI
88
[Serializable]
99
public class PrefsVector4 : Prefs.PrefsExtends<Vector4, PrefsGuiVector4>
1010
{
11-
public PrefsVector4(string key, Vector4 defaultValue = default(Vector4), GuiHierarchy hierarchy = null, string guiLabel = null)
12-
: base(key, defaultValue, hierarchy, guiLabel) { }
11+
public PrefsVector4(string key, Vector4 defaultValue = default(Vector4), GuiHierarchy hierarchy = null,
12+
string guiLabel = null, Action<Prefs.PrefsGuiBaseConnector<Vector4, PrefsGuiVector4>> onCreatedGui = null)
13+
: base(key, defaultValue, hierarchy, guiLabel, onCreatedGui) { }
1314

1415
protected override void OnCreatedGuiInternal(PrefsGuiVector4 gui)
1516
=> gui.Initialize(this.GuiLabel, this.Get(), () => this.DefaultValue);

Assets/PrefsUGUI/Version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.0
1+
1.3.0

0 commit comments

Comments
 (0)