Renderer/net/synchronization.json
austin 74b3140344
All checks were successful
studiorailgun/Renderer/pipeline/head This commit looks good
start work on synchronizing attack
2024-05-05 16:52:03 -04:00

68 lines
1.9 KiB
JSON

{
"outputPath" : "./src/main/java/electrosphere/net/parser/",
"packageName" : "electrosphere.net.parser",
"categories":[
{
"categoryName" : "Synchronization",
"data" : [
{
"name" : "entityId",
"type" : "FIXED_INT"
},
{
"name" : "bTreeId",
"type" : "FIXED_INT"
},
{
"name" : "fieldId",
"type" : "FIXED_INT"
},
{
"name" : "bTreeValue",
"type" : "FIXED_INT"
},
{
"name" : "stringValue",
"type" : "VAR_STRING"
}
],
"messageTypes" : [
{
"messageName" : "UpdateClientState",
"data" : [
"entityId",
"bTreeId",
"fieldId",
"bTreeValue"
]
},
{
"messageName" : "UpdateClientStringState",
"data" : [
"entityId",
"bTreeId",
"fieldId",
"stringValue"
]
},
{
"messageName" : "AttachTree",
"data" : [
"entityId",
"bTreeId"
]
},
{
"messageName" : "DetatchTree",
"data" : [
"entityId",
"bTreeId"
]
}
]
}
]
}