Advertisement
Guest User

Untitled

a guest
Nov 29th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scheme 0.47 KB | None | 0 0
  1. package improbable.transform;
  2.  
  3. type Location {
  4.     float x = 1;
  5.     float y = 2;
  6.     float z = 3;
  7. }
  8.  
  9. type Velocity {
  10.     float x = 1;
  11.     float y = 2;
  12.     float z = 3;
  13. }
  14.  
  15. type Quaternion {
  16.     float w = 1;
  17.     float x = 2;
  18.     float y = 3;
  19.     float z = 4;
  20. }
  21.  
  22. component TransformInternal {
  23.     id = 11000;
  24.     Location location = 1;
  25.     Quaternion rotation = 2;
  26.     Velocity velocity = 3;
  27.     uint32 physics_tick = 4;
  28.     float ticks_per_second = 5;
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement