This commit is contained in:
DESKTOP-TV73FK0\woute
2020-09-18 12:30:57 +02:00
parent e32d103e61
commit a655646e80
2 changed files with 23 additions and 7 deletions

View File

@@ -32,7 +32,22 @@ namespace RH_Engine
public string AddNodeCommand()
{
return "";
dynamic payload = new
{
id = "scene/node/add",
data = new
{
name = "newNode",
components = new
{
terrain = new
{
smoothnormals = true
}
}
}
};
return JsonConvert.SerializeObject(Payload(payload));
}
public string DeleteGroundPaneCommand()