create new constructors for VmcExtVrm

This commit is contained in:
Cassandra de la Cruz-Munoz 2023-08-17 10:30:13 -04:00
parent 06a269f277
commit b236dd964f

View File

@ -68,5 +68,18 @@ namespace godotVmcSharp
return;
}
}
public VmcExtVrm(string _path, string _title) : base(new godotOscSharp.Address("/VMC/Ext/VRM"))
{
path = _path;
title = _title;
}
public VmcExtVrm(string _path, string _title, string _hash) : base(new godotOscSharp.Address("/VMC/Ext/VRM"))
{
path = _path;
title = _title;
hash = _hash;
}
}
}