Fix physics

This commit is contained in:
schmelczerandras 2020-10-12 20:49:17 +02:00
parent 37954e2ef1
commit f9f6825776
51 changed files with 832 additions and 541 deletions

View file

@ -3,10 +3,8 @@ export * from './commands/types/create-objects';
export * from './commands/types/create-player';
export * from './commands/types/delete-objects';
export * from './commands/types/update-objects';
export * from './commands/types/step';
export * from './commands/types/ternary-action';
export * from './commands/types/move-action';
export * from './commands/types/set-aspect-ratio-action';
export * from './commands/types/primary-action';
export * from './commands/types/secondary-action';
export * from './commands/command-receiver';
@ -16,6 +14,9 @@ export * from './commands/broadcast-commands';
export * from './commands/types/set-aspect-ratio-action';
export * from './helper/array';
export * from './helper/last';
export * from './helper/rgb';
export * from './helper/rgb255';
export * from './helper/mix-rgb';
export * from './helper/clamp';
export * from './helper/calculate-view-area';
export * from './helper/pretty-print';
@ -33,7 +34,8 @@ export * from './transport/serialization/serializable';
export * from './transport/serialization/override-deserialization';
export * from './objects/types/character-base';
export * from './objects/types/lamp-base';
export * from './objects/types/tunnel-base';
export * from './objects/types/stone-base';
export * from './objects/types/projectile-base';
export * from './settings';
export * from './transport/transport-events';
export * from './transport/identity';