add ToMessage() to VmcExtVrm
This commit is contained in:
parent
97d467a62a
commit
f91613a745
|
@ -18,6 +18,7 @@
|
|||
|
||||
using Godot;
|
||||
using godotOscSharp;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace godotVmcSharp
|
||||
{
|
||||
|
@ -83,5 +84,21 @@ namespace godotVmcSharp
|
|||
title = _title;
|
||||
hash = _hash;
|
||||
}
|
||||
|
||||
public godotOscSharp.OscMessage ToMessage()
|
||||
{
|
||||
if (hash == null)
|
||||
{
|
||||
return new godotOscSharp.OscMessage(addr, new List<godotOscSharp.OscArgument>{
|
||||
new godotOscSharp.OscArgument(path, 's'),
|
||||
new godotOscSharp.OscArgument(title, 's')
|
||||
});
|
||||
}
|
||||
return new godotOscSharp.OscMessage(addr, new List<godotOscSharp.OscArgument>{
|
||||
new godotOscSharp.OscArgument(path, 's'),
|
||||
new godotOscSharp.OscArgument(title, 's'),
|
||||
new godotOscSharp.OscArgument(hash, 's')
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user