diff --git a/VmcMessages/VmcExtSetConfig.cs b/VmcMessages/VmcExtSetConfig.cs index a152f39..cdbbd0d 100644 --- a/VmcMessages/VmcExtSetConfig.cs +++ b/VmcMessages/VmcExtSetConfig.cs @@ -18,6 +18,7 @@ using Godot; using godotOscSharp; +using System.Collections.Generic; namespace godotVmcSharp { @@ -44,5 +45,10 @@ namespace godotVmcSharp { path = _path; } + + public godotOscSharp.OscMessage ToMessage() + { + return new godotOscSharp.OscMessage(addr, new List{new godotOscSharp.OscArgument(path, 's')}); + } } } \ No newline at end of file