1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00

To Numeric Node - Support converting booleans to numeric

This commit is contained in:
RobertBeekman 2023-02-13 15:52:23 +01:00 committed by GitHub
parent 7a5c018a3f
commit 8dea510eb6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
using Artemis.Core;
using Artemis.Core;
namespace Artemis.VisualScripting.Nodes.Conversion;
@ -33,6 +33,7 @@ public class ConvertToNumericNode : Node
double input => new Numeric(input),
float input => new Numeric(input),
byte input => new Numeric(input),
bool input => new Numeric(input ? 1 : 0),
_ => TryParse(Input.Value)
};
}
@ -44,4 +45,4 @@ public class ConvertToNumericNode : Node
}
#endregion
}
}