create new constructor for VmcExtSettingColor

This commit is contained in:
Cassandra de la Cruz-Munoz 2023-08-17 10:16:46 -04:00
parent afdfbe0ef6
commit 0ca919ad5e

View File

@ -54,5 +54,10 @@ namespace godotVmcSharp
} }
color = new Godot.Color((float)m.Data[0].Value, (float)m.Data[1].Value, (float)m.Data[2].Value, (float)m.Data[3].Value); color = new Godot.Color((float)m.Data[0].Value, (float)m.Data[1].Value, (float)m.Data[2].Value, (float)m.Data[3].Value);
} }
public VmcExtSettingColor(Godot.Color _color) : base(new godotOscSharp.Address("/VMC/Ext/Setting/Color"))
{
color = _color;
}
} }
} }