From 18fd965c3369ae313a82cc75ded0591928a8b4d5 Mon Sep 17 00:00:00 2001 From: Zach Fox Date: Mon, 30 Jan 2017 16:07:43 -0800 Subject: [PATCH] Add note about floats? --- script-archive/entity-server-filter-example.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/script-archive/entity-server-filter-example.js b/script-archive/entity-server-filter-example.js index a82670c53d..ad44bf1583 100644 --- a/script-archive/entity-server-filter-example.js +++ b/script-archive/entity-server-filter-example.js @@ -40,6 +40,9 @@ function filter(p) { when deciding whether to apply or reject the server's physical properties. If a physical property's value doesn't change, Interface will reject the server's property value, and Bullet will continue simulating the entity with stale physical properties. + Ensure that this value is not changed by such a small amount such that new values + fall within floating point precision boundaries. If you accidentally do this, prepare for many + hours of frustrating debugging :). */ /******************************************************/ /* Clamp velocity to maxVelocity units/second. Zeroing each component of acceleration keeps us from slamming.*/