17 lines
326 B
C#
17 lines
326 B
C#
|
|
|
||
|
|
using Godot;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
|
||
|
|
namespace Rokojori
|
||
|
|
{
|
||
|
|
[Tool]
|
||
|
|
[GlobalClass]
|
||
|
|
public partial class TestingNumberAppSetting:NumberAppSetting
|
||
|
|
{
|
||
|
|
public override void ApplyValue( App app )
|
||
|
|
{
|
||
|
|
var stringValue = app.GetSetting( id );
|
||
|
|
RJLog.Log( "Test value is:", stringValue );
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|