github.com/metaworking/channeld@v0.7.3/pkg/channeldpb/unity_common.proto (about) 1 syntax = "proto3"; 2 3 package channeldpb; 4 5 option go_package = "github.com/metaworking/channeld/pkg/channeldpb"; 6 option csharp_namespace = "Channeld"; 7 8 message Vector3f { 9 float x = 1; 10 float y = 2; 11 float z = 3; 12 } 13 14 message Vector4f { 15 float x = 1; 16 float y = 2; 17 float z = 3; 18 float w = 4; 19 } 20 21 message TransformState { 22 // Marks that the state should be removed from the containing map 23 bool removed = 1; 24 Vector3f position = 2; 25 Vector4f rotation = 3; 26 Vector3f scale = 4; 27 }