From 11c3a0c50078a0ee2ea1357400305fe32d8aa73b Mon Sep 17 00:00:00 2001 From: Cassandra de la Cruz-Munoz Date: Thu, 17 Aug 2023 10:26:02 -0400 Subject: [PATCH] create new constructor for VmcExtT --- VmcMessages/VmcExtT.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/VmcMessages/VmcExtT.cs b/VmcMessages/VmcExtT.cs index 8ac2351..bef8779 100644 --- a/VmcMessages/VmcExtT.cs +++ b/VmcMessages/VmcExtT.cs @@ -38,5 +38,10 @@ namespace godotVmcSharp } time = (float)m.Data[0].Value; } + + public VmcExtT(float _time) : base(new godotOscSharp.Address("/VMC/Ext/T")) + { + time = _time; + } } } \ No newline at end of file