create new constructor for VmcExtT

This commit is contained in:
Cassandra de la Cruz-Munoz 2023-08-17 10:26:02 -04:00
parent cb93f0bb1c
commit 11c3a0c500

View File

@ -38,5 +38,10 @@ namespace godotVmcSharp
} }
time = (float)m.Data[0].Value; time = (float)m.Data[0].Value;
} }
public VmcExtT(float _time) : base(new godotOscSharp.Address("/VMC/Ext/T"))
{
time = _time;
}
} }
} }